aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-07-30 12:57:26 -0500
committerJoshua Peek <josh@joshpeek.com>2009-07-30 17:54:01 -0500
commit9cdcfb4fc5992d51d0773d88bfc1d97c089d536b (patch)
tree8e8869b9866151246cf0796d1dd07fe42af361ac
parent831c38ffc7f3fb25284ceba82124807351de0371 (diff)
downloadrails-9cdcfb4fc5992d51d0773d88bfc1d97c089d536b.tar.gz
rails-9cdcfb4fc5992d51d0773d88bfc1d97c089d536b.tar.bz2
rails-9cdcfb4fc5992d51d0773d88bfc1d97c089d536b.zip
ditto for id=
-rw-r--r--activerecord/lib/active_record/attribute_methods.rb6
-rw-r--r--activerecord/lib/active_record/attribute_methods/write.rb6
2 files changed, 4 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb
index c066b2318a..04a9932a4c 100644
--- a/activerecord/lib/active_record/attribute_methods.rb
+++ b/activerecord/lib/active_record/attribute_methods.rb
@@ -89,7 +89,7 @@ module ActiveRecord
# method is defined by Active Record though.
def instance_method_already_implemented?(method_name)
method_name = method_name.to_s
- return true if method_name =~ /^id(=$|\?$|$)/
+ return true if method_name == "id"
@_defined_class_methods ||= ancestors.first(ancestors.index(ActiveRecord::Base)).sum([]) { |m| m.public_instance_methods(false) | m.private_instance_methods(false) | m.protected_instance_methods(false) }.map {|m| m.to_s }.to_set
@@_defined_activerecord_methods ||= (ActiveRecord::Base.public_instance_methods(false) | ActiveRecord::Base.private_instance_methods(false) | ActiveRecord::Base.protected_instance_methods(false)).map{|m| m.to_s }.to_set
raise DangerousAttributeError, "#{method_name} is defined by ActiveRecord" if @@_defined_activerecord_methods.include?(method_name)
@@ -152,7 +152,7 @@ module ActiveRecord
id
elsif md = self.class.match_attribute_method?(method_name)
attribute_name, method_type = md.pre_match, md.to_s
- if @attributes.include?(attribute_name)
+ if attribute_name == 'id' || @attributes.include?(attribute_name)
__send__("attribute#{method_type}", attribute_name, *args, &block)
else
super
@@ -182,7 +182,7 @@ module ActiveRecord
end
if md = self.class.match_attribute_method?(method_name)
- return true if @attributes.include?(md.pre_match)
+ return true if md.pre_match == 'id' || @attributes.include?(md.pre_match)
end
super
end
diff --git a/activerecord/lib/active_record/attribute_methods/write.rb b/activerecord/lib/active_record/attribute_methods/write.rb
index 140057c186..b4f2f6eb1d 100644
--- a/activerecord/lib/active_record/attribute_methods/write.rb
+++ b/activerecord/lib/active_record/attribute_methods/write.rb
@@ -18,6 +18,7 @@ module ActiveRecord
# columns are turned into +nil+.
def write_attribute(attr_name, value)
attr_name = attr_name.to_s
+ attr_name = self.class.primary_key if attr_name == 'id'
@attributes_cache.delete(attr_name)
if (column = column_for_attribute(attr_name)) && column.number?
@attributes[attr_name] = convert_number_column_value(value)
@@ -26,11 +27,6 @@ module ActiveRecord
end
end
- # Sets the primary ID.
- def id=(value)
- write_attribute(self.class.primary_key, value)
- end
-
private
# Handle *= for method_missing.
def attribute=(attribute_name, value)