Store::Memory

Gem Version Build Status Code Climate

Memory DataMapper for Store.

It implements basic features such as insert, update, delete, single_find, bulk_find and count.

Installation

Add this line to your application's Gemfile:

gem 'store-memory'

And then execute:

$ bundle

Or install it yourself as:

$ gem install store-memory

Usage

require 'store/memory'

module DataMapper
  module User
    class Memory < Store::DataMapper::Memory
    end
  end
end

DataMapper::User::Memory.new

Tests

Run against shared specs implemented in store-spec.

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