Rhcl
Pure Ruby HCL parser
Installation
Add this line to your application's Gemfile:
gem 'rhcl'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rhcl
Usage
Parse
Rhcl.parse(" variable \"foo\" {\n default = \"bar\"\n description = \"bar\"\n }\n\n variable \"amis\" {\n default = {\n east = \"foo\"\n }\n }\n")
Dump
Rhcl.dump(
{"variable"=>
{"foo"=>{"default"=>"bar", "description"=>"bar"},
"amis"=>{"default"=>{"east"=>"foo"}}}}
)
Contributing
- Fork it ( http://github.com/winebarrel/rhcl/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
