aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods/read.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-03-21 21:36:05 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2011-03-22 20:02:32 -0300
commitbaa237c974fee8023dd704a4efb418ff0e963de0 (patch)
tree00eae0c5f8508627c4477a172bae9cab8b85d603 /activerecord/lib/active_record/attribute_methods/read.rb
parentda6c7bd4b411105e7556ff5015e3c9f6ab1d26fe (diff)
downloadrails-baa237c974fee8023dd704a4efb418ff0e963de0.tar.gz
rails-baa237c974fee8023dd704a4efb418ff0e963de0.tar.bz2
rails-baa237c974fee8023dd704a4efb418ff0e963de0.zip
Allow to read and write AR attributes with non valid identifiers
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods/read.rb')
-rw-r--r--activerecord/lib/active_record/attribute_methods/read.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/read.rb b/activerecord/lib/active_record/attribute_methods/read.rb
index ab86d8bad1..affe2d7f53 100644
--- a/activerecord/lib/active_record/attribute_methods/read.rb
+++ b/activerecord/lib/active_record/attribute_methods/read.rb
@@ -70,7 +70,10 @@ module ActiveRecord
if cache_attribute?(attr_name)
access_code = "@attributes_cache['#{attr_name}'] ||= (#{access_code})"
end
- generated_attribute_methods.module_eval("def _#{symbol}; #{access_code}; end; alias #{symbol} _#{symbol}", __FILE__, __LINE__)
+ generated_attribute_methods.module_eval do
+ define_method("_#{symbol}") { eval(access_code) }
+ alias_method(symbol, "_#{symbol}")
+ end
end
end