Sha256: 69a3ca1e09b58bba0d67c9913e5b3f83936c375e029e4a529e0492f05558b23e
Contents?: true
Size: 1.02 KB
Versions: 5
Compression:
Stored size: 1.02 KB
Contents
[![Build Status](https://secure.travis-ci.org/ileitch/modis.png?branch=master)](http://travis-ci.org/ileitch/modis) [![Code Climate](https://codeclimate.com/github/ileitch/modis.png)](https://codeclimate.com/github/ileitch/modis) [![Coverage Status](https://coveralls.io/repos/ileitch/modis/badge.png?branch=master)](https://coveralls.io/r/ileitch/modis?branch=master) # Modis ActiveModel + Redis with the aim to mimic ActiveRecord where possible. ## Installation Add this line to your application's Gemfile: gem 'modis' And then execute: $ bundle Or install it yourself as: $ gem install modis ## Usage ```ruby class MyModel include Modis::Models attribute :name, String attribute :age, Integer end MyModel.create!(:name => 'Ian', :age => 28) ``` ## Supported Features TODO. ## 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
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
modis-1.3.0 | README.md |
modis-1.2.0 | README.md |
modis-1.1.0 | README.md |
modis-1.0.0 | README.md |
modis-0.0.1 | README.md |