Skip to content
This repository has been archived by the owner on Aug 14, 2021. It is now read-only.

winebarrel/rhcl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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(<<-EOS)
  variable "foo" {
      default = "bar"
      description = "bar"
  }

  variable "amis" {
      default = {
          east = "foo"
      }
  }
EOS

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

About

Pure Ruby HCL parser

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages