0.01
No commit activity in last 3 years
No release in over 3 years
Super simpler object mapper built on Sequel (http://sequel.jeremyevans.net/) and using the repository pattern http://martinfowler.com/eaaCatalog/repository.html
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0
>= 0

Runtime

>= 0
 Project Readme

Sequel::Mapper

A super simple datamapper built on top of Sequel. For creating repository like objects.

Installation

Add this line to your application's Gemfile:

gem 'sequel-mapper'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sequel-mapper

Usage

require 'sequel/mapper'

class Account
  def initialize(attrs={})
    #some way to covert attrs to @attibutes
  end
end

class Accounts
  include Sequel::Mapper
  dataset :accounts
end

DB = Sequel.connect

accounts = Accounts.new(DB)

accounts.all #=> all accounts

# CRUD

account = Account.new(email: 'dave@example.com')

accounts.create(account)

accounts.find(1)

accounts.update(account)

accounts.delete(account)

TODO: Improve usage instructions :)

Contributing

  1. Fork it ( https://github.com/stengland/sequel-mapper/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