aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/association_collection.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-02-15 21:47:27 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2008-02-15 21:47:27 +0000
commitc55120c8e6922146fa50bf1e4f4d87d4820e09dc (patch)
tree10b21c201d833a853a49b8615e364bbfaa028aa4 /activerecord/lib/active_record/associations/association_collection.rb
parent6f0b0125d0f9044074fcb6f9b1528937a2bb4d2e (diff)
downloadrails-c55120c8e6922146fa50bf1e4f4d87d4820e09dc.tar.gz
rails-c55120c8e6922146fa50bf1e4f4d87d4820e09dc.tar.bz2
rails-c55120c8e6922146fa50bf1e4f4d87d4820e09dc.zip
Revert [8865], broke AP record identifier. Reopens #11109.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8874 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations/association_collection.rb')
-rw-r--r--activerecord/lib/active_record/associations/association_collection.rb26
1 files changed, 12 insertions, 14 deletions
diff --git a/activerecord/lib/active_record/associations/association_collection.rb b/activerecord/lib/active_record/associations/association_collection.rb
index 359e27de3b..c993eb07fd 100644
--- a/activerecord/lib/active_record/associations/association_collection.rb
+++ b/activerecord/lib/active_record/associations/association_collection.rb
@@ -43,8 +43,8 @@ module ActiveRecord
end
# Calculate sum using SQL, not Enumerable
- def sum(*args)
- calculate(:sum, *args) { |*block_args| yield(*block_args) if block_given? }
+ def sum(*args, &block)
+ calculate(:sum, *args, &block)
end
# Remove +records+ from this association. Does not destroy +records+.
@@ -121,9 +121,9 @@ module ActiveRecord
size.zero?
end
- def any?
+ def any?(&block)
if block_given?
- method_missing(:any?) { |*block_args| yield(*block_args) if block_given? }
+ method_missing(:any?, &block)
else
!empty?
end
@@ -157,13 +157,11 @@ module ActiveRecord
protected
- def method_missing(method, *args)
+ def method_missing(method, *args, &block)
if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
- super { |*block_args| yield(*block_args) if block_given? }
+ super
else
- @reflection.klass.send(:with_scope, construct_scope) do
- @reflection.klass.send(method, *args) { |*block_args| yield(*block_args) if block_given? }
- end
+ @reflection.klass.send(:with_scope, construct_scope) { @reflection.klass.send(method, *args, &block) }
end
end
@@ -189,15 +187,15 @@ module ActiveRecord
private
- def create_record(attrs)
+ def create_record(attrs, &block)
ensure_owner_is_not_new
record = @reflection.klass.send(:with_scope, :create => construct_scope[:create]) { @reflection.klass.new(attrs) }
- add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) if block_given? }
+ add_record_to_target_with_callbacks(record, &block)
end
- def build_record(attrs)
+ def build_record(attrs, &block)
record = @reflection.klass.new(attrs)
- add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) if block_given? }
+ add_record_to_target_with_callbacks(record, &block)
end
def add_record_to_target_with_callbacks(record)
@@ -239,4 +237,4 @@ module ActiveRecord
end
end
-end \ No newline at end of file
+end