aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAmiel Martin <amiel@carnesmedia.com>2014-06-20 15:49:27 -0700
committerAmiel Martin <amiel@carnesmedia.com>2014-06-24 17:20:24 -0700
commit6b0e834a194d112585f41deba0a40780d68e38c6 (patch)
treefeac948ca1c91cadc8c9361eeeb56f2bf1bcc965 /activerecord
parent5b23e31771b898cf5e715e72f75dd9427c0a0875 (diff)
downloadrails-6b0e834a194d112585f41deba0a40780d68e38c6.tar.gz
rails-6b0e834a194d112585f41deba0a40780d68e38c6.tar.bz2
rails-6b0e834a194d112585f41deba0a40780d68e38c6.zip
Use #model_name on instances instead of classes
This allows rails code to be more confdent when asking for a model name, instead of having to ask for the class. Rails core discussion here: https://groups.google.com/forum/#!topic/rubyonrails-core/ThSaXw9y1F8
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/integration.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/integration.rb b/activerecord/lib/active_record/integration.rb
index 31e2518540..15b2f65dcb 100644
--- a/activerecord/lib/active_record/integration.rb
+++ b/activerecord/lib/active_record/integration.rb
@@ -55,16 +55,16 @@ module ActiveRecord
def cache_key(*timestamp_names)
case
when new_record?
- "#{self.class.model_name.cache_key}/new"
+ "#{model_name.cache_key}/new"
when timestamp_names.any?
timestamp = max_updated_column_timestamp(timestamp_names)
timestamp = timestamp.utc.to_s(cache_timestamp_format)
- "#{self.class.model_name.cache_key}/#{id}-#{timestamp}"
+ "#{model_name.cache_key}/#{id}-#{timestamp}"
when timestamp = max_updated_column_timestamp
timestamp = timestamp.utc.to_s(cache_timestamp_format)
- "#{self.class.model_name.cache_key}/#{id}-#{timestamp}"
+ "#{model_name.cache_key}/#{id}-#{timestamp}"
else
- "#{self.class.model_name.cache_key}/#{id}"
+ "#{model_name.cache_key}/#{id}"
end
end