Sha256: faa96dc2ffbf0692901a23763c04dfe164d76746280bca587d16327e0d6cb94d
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# Qi [][travis] [][gem] [][inchpages] [][rubydoc] > An ordered store of stuff to manage, for Ruby. ## Rubies * [MRI](https://www.ruby-lang.org/) * [Rubinius](http://rubini.us/) * [JRuby](http://jruby.org/) ## Installation Add this line to your application's Gemfile: gem 'qi' And then execute: $ bundle Or install it yourself as: $ gem install qi ## Example ```ruby require 'qi' db = Qi::Store.new(8) # => #<Qi::Store:0x007f82129493c8 @cells=[nil, nil, nil, nil, nil, nil, nil, nil], @deleted_content=nil> result = db.call(2, 3, 'p') # => #<Qi::Store:0x007f821293a170 @cells=[nil, nil, nil, "p", nil, nil, nil, nil], @deleted_content=nil> result.store.cells # => [nil, nil, nil, "p", nil, nil, nil, nil] result.deleted_content # => nil ``` ## Versioning __Qi__ follows [Semantic Versioning 2.0](http://semver.org/). ## Contributing 1. [Fork it](https://github.com/cyril/qi.rb/fork) 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 a new Pull Request ## License See `LICENSE.md` file. [gem]: https://rubygems.org/gems/qi [travis]: https://travis-ci.org/cyril/qi.rb [inchpages]: http://inch-ci.org/github/cyril/qi.rb/ [rubydoc]: http://rubydoc.info/gems/qi/frames
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
qi-4.0.0 | README.md |