Sha256: c4212483491aa774e8f47b9a4aff46318878f43ef93e779f947eae8353b4d211
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
module Husky module Repo class ActiveRecord def all entity.wrap(data_source.all) end def find(id) entity.new(data_source.find(id)) end def new(attributes = {}) entity.new(data_source.new(attributes)) end # DEPRECATE def build(attributes) entity.new(data_source.build(attributes)) end def save(item) item = item.save end def create(attributes) entity.new(data_source.create(attributes)) end def update(item, attributes) entity.new(item.update_attributes(attributes)) end def destroy(item) item.destroy end private def data_source raise NotImplementedError end def entity raise NotImplementedError end end class InMemory def initialize @records = {} @id = 1 end def all @records end def new(attributes = {}) entity.new(data_source.new(attributes)) end def find(id) entity.new(@records[id.to_i]) end def save(object) object.id = @id @records[@id] = object @id += 1 entity.new(object) end def create(attributes = {}) save(new(attributes)) end def update(item, attributes) entity.new(item.update_attributes(attributes)) end def destroy(object) @records.delete(object.id) end private def data_source raise NotImplementedError end def entity raise NotImplementedError end end class Registry class << self def register(type, repo) repositories[type] = repo end def repositories @repositories ||= {} end def for(type) repositories[type] end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
husky-0.3.1 | lib/husky/repo.rb |