Merge pull request #71 from pezra/init-blocks

Support providing an initialization block when creating new models
master
Sam Lown 2011-05-11 23:12:59 -07:00
commit 3f7b1d38c1
2 changed files with 9 additions and 0 deletions

View File

@ -49,6 +49,8 @@ module CouchRest
# * :directly_set_attributes: true when data comes directly from database
# * :database: provide an alternative database
#
# If a block is provided the new model will be passed into the
# block so that it can be populated.
def initialize(doc = {}, options = {})
doc = prepare_all_attributes(doc, options)
# set the instances database, if provided
@ -57,6 +59,8 @@ module CouchRest
unless self['_id'] && self['_rev']
self[self.model_type_key] = self.class.to_s
end
yield self if block_given?
after_initialize if respond_to?(:after_initialize)
end

View File

@ -44,6 +44,11 @@ describe "Model Base" do
@obj.database.should eql('database')
end
it "should support initialization block" do
@obj = Basic.new {|b| b.database = 'database'}
@obj.database.should eql('database')
end
end
describe "ActiveModel compatability Basic" do