diff options
author | Ken Miller <ken.miller@doubledyno.com> | 2008-10-15 17:34:57 -0700 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-10-24 21:35:05 +0200 |
commit | 8a77c4abfa760e5829b566698400f2115409b7ff (patch) | |
tree | 1d915f15d3184898af7612aa404a03175aacd1b2 /activerecord/lib/active_record | |
parent | a17fc20eb122d45a017e99e592e5e159025ab26b (diff) | |
download | rails-8a77c4abfa760e5829b566698400f2115409b7ff.tar.gz rails-8a77c4abfa760e5829b566698400f2115409b7ff.tar.bz2 rails-8a77c4abfa760e5829b566698400f2115409b7ff.zip |
Fixed issue where block is not called on the very first invocation of a find_or_create_by_ automatic finder.
[#1224 state:committed]
Diffstat (limited to 'activerecord/lib/active_record')
-rwxr-xr-x | activerecord/lib/active_record/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 039e14435f..b89c8641aa 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -1764,7 +1764,7 @@ module ActiveRecord #:nodoc: # # Each dynamic finder or initializer/creator is also defined in the class after it is first invoked, so that future # attempts to use it do not run through method_missing. - def method_missing(method_id, *arguments) + def method_missing(method_id, *arguments, &block) if match = DynamicFinderMatch.match(method_id) attribute_names = match.attribute_names super unless all_attributes_exists?(attribute_names) @@ -1819,7 +1819,7 @@ module ActiveRecord #:nodoc: end end }, __FILE__, __LINE__ - send(method_id, *arguments) + send(method_id, *arguments, &block) end else super |