/tools/Ruby/lib/ruby/gems/1.8/gems/yamler-0.1.0/README
http://github.com/agross/netopenspace · #! · 24 lines · 20 code · 4 blank · 0 comment · 0 complexity · 464a3adfea5c5060e61eac8e2760e028 MD5 · raw file
- Yamler - Making YAML easy and fun to use with Ruby
- =========================================================================
- Using YAML in Ruby is pretty easy, but I find myself doing several things
- every time I use YAML. First is I always seem to pass it through ERB. The
- other is that I want to pass it a binding, because I want to give it
- access to some variables or methods. Finally I sometimes end up merging
- several YAML files into one file, because other wise it would be too big
- and unwieldy to manage. Enter Yamler:
- === Examples:
- # Renders said file through ERB, and then through YAML.load:
- Yamler.load('/path/to/file.yml')
- # Does the same as above but makes a method called say_hi
- # available to the binding of the Yamler::Template instance.
- Yamler.load('/path/to/file.yml') do
- def say_hi
- 'hi'
- end
- end
-
- # Renders said file through ERB, and then through YAML.load:
- Yamler.load('/path/to/file.yml', {:locals => {:username => 'markbates'}, :foo => :bar})