Rhcl

Pure Ruby HCL parser

Gem Version Build Status

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

  1. Fork it ( http://github.com/winebarrel/rhcl/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request