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

  1. Fork it
  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