Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/darashi/gimlet

Document-oriented, Text-based and Read-only data storage
https://github.com/darashi/gimlet

Last synced: 28 days ago
JSON representation

Document-oriented, Text-based and Read-only data storage

Awesome Lists containing this project

README

        

# Gimlet

Document-oriented, Text-based and Read-only data storage

Gimlet is strongly inspired by [Local Data](http://middlemanapp.com/advanced/local-data/) of [Middleman](http://middlemanapp.com/). 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