aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/time_with_zone.rb
diff options
context:
space:
mode:
authorMichael S. Klishin <michael@novemberain.com>2008-12-28 13:21:10 +0300
committerMichael S. Klishin <michael@novemberain.com>2008-12-28 13:21:10 +0300
commitd77deb89d54b18c662ae3de103802e4d7a9d7d08 (patch)
treef5a77220f9057d3b998e1a2db8166ecc021e32cc /activesupport/lib/active_support/time_with_zone.rb
parent5da3ba12159d2c4fc0680efcf0cad8a31f725122 (diff)
downloadrails-d77deb89d54b18c662ae3de103802e4d7a9d7d08.tar.gz
rails-d77deb89d54b18c662ae3de103802e4d7a9d7d08.tar.bz2
rails-d77deb89d54b18c662ae3de103802e4d7a9d7d08.zip
Annotated metaprogramming code across ActiveSupport
Diffstat (limited to 'activesupport/lib/active_support/time_with_zone.rb')
-rw-r--r--activesupport/lib/active_support/time_with_zone.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb
index 9a2d283b30..59f1e6163b 100644
--- a/activesupport/lib/active_support/time_with_zone.rb
+++ b/activesupport/lib/active_support/time_with_zone.rb
@@ -233,10 +233,10 @@ module ActiveSupport
end
%w(year mon month day mday wday yday hour min sec to_date).each do |method_name|
- class_eval <<-EOV
- def #{method_name}
- time.#{method_name}
- end
+ class_eval <<-EOV, __FILE__, __LINE__ + 1
+ def #{method_name} # def month
+ time.#{method_name} # time.month
+ end # end
EOV
end