Support providing an initialization block when creating new models
This commit is contained in:
parent
1309fa7082
commit
c9d2611bb7
|
@ -49,6 +49,8 @@ module CouchRest
|
||||||
# * :directly_set_attributes: true when data comes directly from database
|
# * :directly_set_attributes: true when data comes directly from database
|
||||||
# * :database: provide an alternative 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 = {})
|
def initialize(doc = {}, options = {})
|
||||||
doc = prepare_all_attributes(doc, options)
|
doc = prepare_all_attributes(doc, options)
|
||||||
# set the instances database, if provided
|
# set the instances database, if provided
|
||||||
|
@ -57,6 +59,8 @@ module CouchRest
|
||||||
unless self['_id'] && self['_rev']
|
unless self['_id'] && self['_rev']
|
||||||
self[self.model_type_key] = self.class.to_s
|
self[self.model_type_key] = self.class.to_s
|
||||||
end
|
end
|
||||||
|
yield self if block_given?
|
||||||
|
|
||||||
after_initialize if respond_to?(:after_initialize)
|
after_initialize if respond_to?(:after_initialize)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,11 @@ describe "Model Base" do
|
||||||
@obj.database.should eql('database')
|
@obj.database.should eql('database')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "should support initialization block" do
|
||||||
|
@obj = Basic.new {|b| b.database = 'database'}
|
||||||
|
@obj.database.should eql('database')
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "ActiveModel compatability Basic" do
|
describe "ActiveModel compatability Basic" do
|
||||||
|
|
Loading…
Reference in a new issue