aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-12-01 22:20:06 +0000
committerJon Leighton <j@jonathanleighton.com>2011-12-01 23:41:51 +0000
commitbd920eae82f83268b2a6ed31c0275255e01bad9f (patch)
tree7850074b481ed3142e1a5eb6f9b524a6a0c377ac /activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
parente9fb6d04bdfbe3dfc4ba1a3cf442ec5d25764300 (diff)
downloadrails-bd920eae82f83268b2a6ed31c0275255e01bad9f.tar.gz
rails-bd920eae82f83268b2a6ed31c0275255e01bad9f.tar.bz2
rails-bd920eae82f83268b2a6ed31c0275255e01bad9f.zip
Remove some unnecessary code etc
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb')
-rw-r--r--activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb22
1 files changed, 3 insertions, 19 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
index d7972917fe..236681096b 100644
--- a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
+++ b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb
@@ -19,27 +19,11 @@ module ActiveRecord
# Defined for all +datetime+ and +timestamp+ attributes when +time_zone_aware_attributes+ are enabled.
# This enhanced read method automatically converts the UTC time stored in the database to the time
# zone stored in Time.zone.
- def internal_attribute_access_code(attr_name)
+ def internal_attribute_access_code(attr_name, cast_code)
column = columns_hash[attr_name]
if create_time_zone_conversion_attribute?(attr_name, column)
- <<-CODE
- cached = @attributes_cache['#{attr_name}']
- return cached if cached
- v = @attributes['#{attr_name}']
- time = #{column.type_cast_code('v')}
- @attributes_cache['#{attr_name}'] = time.acts_like?(:time) ? time.in_time_zone : time
- CODE
- else
- super
- end
- end
-
- def external_attribute_access_code(attr_name)
- column = columns_hash[attr_name]
-
- if create_time_zone_conversion_attribute?(attr_name, column)
- "attributes_cache[attr_name] ||= (#{attribute_cast_code(attr_name)})"
+ super(attr_name, "(v=#{column.type_cast_code('v')}) && #{cast_code}")
else
super
end
@@ -47,7 +31,7 @@ module ActiveRecord
def attribute_cast_code(attr_name)
if create_time_zone_conversion_attribute?(attr_name, columns_hash[attr_name])
- "v.acts_like?(:time) ? v.in_time_zone : v"
+ "(v.acts_like?(:time) ? v.in_time_zone : v)"
else
super
end