YmlReader
Simple (very simple) gem to set a directory and load yaml files. This gem is a result of finding duplication between my data_magic and fig_newton gems. Here's an example of how it is used in the fig_newton gem:
First of all you need to extend the YmlReader
gem if you intend to use it in another Module:
class FigNewton
extend YmlReader
By extending the YmlReader
module you now have three new methods and two instance variables. Here are the three methods:
yml_directory=
yml_directory
load
and the instance variables:
@yml_directory
@yml
The @yml
instance variable will contain the contents of the yml file after a call to load.
Installation
Add this line to your application's Gemfile:
gem 'yml_reader'
And then execute:
$ bundle
Or install it yourself as:
$ gem install yml_reader
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request