Gimlet
Document-oriented, Text-based and Read-only data storage
Gimlet is strongly inspired by Local Data of Middleman. It is so handy, but it is built in middleman.
Gimlet let us to use this feature for general purposes that do not fit middleman with.
Installation
Add this line to your application's Gemfile:
gem 'gimlet'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gimlet
Usage
Put data/people/homuhomu.yaml
,
---
first_name: Homura
last_name: Akemi
Then you can access the data:
require 'gimlet'
data = Gimlet::DataStore.new('data')
p data.to_h #=> {"people"=>{"homuhomu"=>{"first_name"=>"Homura", "last_name"=>"Akemi"}}}
p data.people.homuhomu #=> {"first_name"=>"Homura", "last_name"=>"Akemi"}
p data.people[:homuhomu].first_name #=> "Homura"
Contributing
- Fork it
- 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