aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-07-08 22:59:41 +0200
committerJosé Valim <jose.valim@gmail.com>2010-07-08 22:59:41 +0200
commit87f64ef05e48ad8b374022ca944e34a7ad68551d (patch)
treed41b66f6bf8045a9e2e82a990cfbf0f78777cbd6 /activerecord
parent6f83a57ac7bf77565380b26b506972cfe751b717 (diff)
downloadrails-87f64ef05e48ad8b374022ca944e34a7ad68551d.tar.gz
rails-87f64ef05e48ad8b374022ca944e34a7ad68551d.tar.bz2
rails-87f64ef05e48ad8b374022ca944e34a7ad68551d.zip
Improve a bit the code in latest commits.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/persistence.rb16
-rw-r--r--activerecord/lib/active_record/timestamp.rb20
2 files changed, 16 insertions, 20 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index 8d093c81de..828a8b41b6 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -106,15 +106,17 @@ module ActiveRecord
# or callbacks. This is especially useful for boolean flags on existing records.
def update_attribute(name, value)
send("#{name}=", value)
- primary_key = self.class.primary_key
- h = {name => value}
- if should_record_update_timestamps
- self.send(:record_update_timestamps)
- current_time = current_time_from_proper_timezone
- timestamp_attributes_for_update_in_model.each { |column| h.merge!(column => current_time) }
+ hash = { name => read_attribute(name) }
+
+ if record_update_timestamps
+ timestamp_attributes_for_update_in_model.each do |column|
+ hash[column] = read_attribute(column)
+ end
end
- self.class.update_all(h, {primary_key => self[primary_key]}) == 1
+
@changed_attributes.delete(name.to_s)
+ primary_key = self.class.primary_key
+ self.class.update_all(hash, { primary_key => self[primary_key] }) == 1
end
# Updates all the attributes from the passed-in Hash and saves the record.
diff --git a/activerecord/lib/active_record/timestamp.rb b/activerecord/lib/active_record/timestamp.rb
index e6d52744df..1075a60f07 100644
--- a/activerecord/lib/active_record/timestamp.rb
+++ b/activerecord/lib/active_record/timestamp.rb
@@ -49,8 +49,8 @@ module ActiveRecord
write_attribute('created_at', current_time) if respond_to?(:created_at) && created_at.nil?
write_attribute('created_on', current_time) if respond_to?(:created_on) && created_on.nil?
- timestamp_attributes_for_update.each do |column|
- write_attribute(column.to_s, current_time) if respond_to?(column) && self.send(column).nil?
+ timestamp_attributes_for_update_in_model.each do |column|
+ write_attribute(column.to_s, current_time) if self.send(column).nil?
end
end
@@ -63,23 +63,17 @@ module ActiveRecord
end
def record_update_timestamps
- if should_record_update_timestamps
+ if record_timestamps && (!partial_updates? || changed?)
current_time = current_time_from_proper_timezone
timestamp_attributes_for_update_in_model.each { |column| write_attribute(column.to_s, current_time) }
+ true
+ else
+ false
end
end
- def should_record_update_timestamps
- record_timestamps && (!partial_updates? || changed?)
- end
-
-
- def timestamp_attributes_for_update #:nodoc:
- [:updated_at, :updated_on]
- end
-
def timestamp_attributes_for_update_in_model #:nodoc:
- ([:updated_at, :updated_on].inject([]) { |sum, elem| respond_to?(elem) ? sum << elem : sum })
+ [:updated_at, :updated_on].select { |elem| respond_to?(elem) }
end
def current_time_from_proper_timezone #:nodoc: