aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/aggregations.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-10 23:01:18 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-10 23:01:18 +0000
commitcff25aae90859d5f47d827b162b505f8b316b733 (patch)
tree58220be1e52998913f4e1ca9131f9bb3898a9818 /activerecord/lib/active_record/aggregations.rb
parent0ad5365bf4f71adb32ea543f74615e86edce7b28 (diff)
downloadrails-cff25aae90859d5f47d827b162b505f8b316b733.tar.gz
rails-cff25aae90859d5f47d827b162b505f8b316b733.tar.bz2
rails-cff25aae90859d5f47d827b162b505f8b316b733.zip
eval with __FILE__ and __LINE__
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7827 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/aggregations.rb')
-rw-r--r--activerecord/lib/active_record/aggregations.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index 5be629e3d5..8c3cdc3c11 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -153,7 +153,7 @@ module ActiveRecord
"true"
end
- module_eval <<-end_eval
+ module_eval <<-end_eval, __FILE__, __LINE__
def #{name}(force_reload = false)
if (@#{name}.nil? || force_reload) && #{allow_nil_condition}
@#{name} = #{class_name}.new(#{mapping.collect { |pair| "read_attribute(\"#{pair.first}\")"}.join(", ")})
@@ -161,13 +161,13 @@ module ActiveRecord
return @#{name}
end
end_eval
- end
-
+ end
+
def writer_method(name, class_name, mapping, allow_nil)
mapping = (Array === mapping.first ? mapping : [ mapping ])
if allow_nil
- module_eval <<-end_eval
+ module_eval <<-end_eval, __FILE__, __LINE__
def #{name}=(part)
if part.nil?
#{mapping.collect { |pair| "@attributes[\"#{pair.first}\"] = nil" }.join("\n")}
@@ -178,7 +178,7 @@ module ActiveRecord
end
end_eval
else
- module_eval <<-end_eval
+ module_eval <<-end_eval, __FILE__, __LINE__
def #{name}=(part)
@#{name} = part.freeze
#{mapping.collect{ |pair| "@attributes[\"#{pair.first}\"] = part.#{pair.last}" }.join("\n")}