aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods/write.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-03-22 20:11:36 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2011-03-22 20:11:36 -0300
commit450f7cf01b855b536416fc048a92c4309da2492e (patch)
tree701225bdeb082efb37e4c5d75e6f0d9e12452183 /activerecord/lib/active_record/attribute_methods/write.rb
parentbaa237c974fee8023dd704a4efb418ff0e963de0 (diff)
downloadrails-450f7cf01b855b536416fc048a92c4309da2492e.tar.gz
rails-450f7cf01b855b536416fc048a92c4309da2492e.tar.bz2
rails-450f7cf01b855b536416fc048a92c4309da2492e.zip
use class_eval with a string when it's possible
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods/write.rb')
-rw-r--r--activerecord/lib/active_record/attribute_methods/write.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/write.rb b/activerecord/lib/active_record/attribute_methods/write.rb
index 832f2ed408..3c4dab304e 100644
--- a/activerecord/lib/active_record/attribute_methods/write.rb
+++ b/activerecord/lib/active_record/attribute_methods/write.rb
@@ -10,8 +10,12 @@ module ActiveRecord
module ClassMethods
protected
def define_method_attribute=(attr_name)
- generated_attribute_methods.send(:define_method, "#{attr_name}=") do |new_value|
- write_attribute(attr_name, new_value)
+ if attr_name =~ /^[a-zA-Z_]\w*[!?=]?$/
+ generated_attribute_methods.module_eval("def #{attr_name}=(new_value); write_attribute('#{attr_name}', new_value); end", __FILE__, __LINE__)
+ else
+ generated_attribute_methods.send(:define_method, "#{attr_name}=") do |new_value|
+ write_attribute(attr_name, new_value)
+ end
end
end
end