Sha256: d162e1d180b8e12e3a5b133edb842387e40af8cbdfabed39149095f188720195
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# MemoryModel [![Gem Version](https://badge.fury.io/rb/memory_model.svg)](https://badge.fury.io/rb/jsonapionify) [![Build Status](https://travis-ci.org/jwaldrip/memory_model.svg?branch=master)](https://travis-ci.org/brandfolder/jsonapionify) [![Code Climate](https://codeclimate.com/github/jwaldrip/memory_model/badges/gpa.svg)](https://codeclimate.com/github/jwaldrip/memory_model) [![Test Coverage](https://codeclimate.com/github/jwaldrip/memory_model/badges/coverage.svg)](https://codeclimate.com/github/jwaldrip/memory_model/coverage) An in memory model construct. Good for testing. ## Installation Add this line to your application's Gemfile: gem 'memory_model' And then execute: $ bundle Or install it yourself as: $ gem install memory_model ## Usage ### Creating a basic model ```ruby class User < MemoryModel::Base primary_key :id field :first_name field :last_name end ``` ### Creating Records ```ruby User.create(first_name: 'jason') # OR User.new(first_name: 'jason').save ``` ### Finding Records ```ruby User.find(id) ``` ### Updating Records ```ruby User.find(id).update(first_name: 'larry') ``` ### Deleting Records ```ruby User.find(id).delete ``` ## 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
memory_model-1.0.0 | README.md |