aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-03-18 16:24:40 +0100
committerYves Senn <yves.senn@gmail.com>2013-03-18 17:41:34 +0100
commit836ea9fb425dc012cb0f6d57fdc2d8a28fcccc05 (patch)
tree86750509ee081ca23b4e40cb19c0fa4a8adac0e6 /activesupport/lib
parentc4a7c31581c8386198317a2385f9c7d462c18497 (diff)
downloadrails-836ea9fb425dc012cb0f6d57fdc2d8a28fcccc05.tar.gz
rails-836ea9fb425dc012cb0f6d57fdc2d8a28fcccc05.tar.bz2
rails-836ea9fb425dc012cb0f6d57fdc2d8a28fcccc05.zip
`TimeWithZone` raises `NoMethodError` in proper context.
Closes #9772. `TimeWithZone` delegates everything to the wrapped `Time` object using `method_missing`. The result is that `NoMethodError` error will be raised in the context of `Time` which leads to a misleading debug output.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/time_with_zone.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb
index 98c866ac43..4a032b0ad0 100644
--- a/activesupport/lib/active_support/time_with_zone.rb
+++ b/activesupport/lib/active_support/time_with_zone.rb
@@ -366,6 +366,8 @@ module ActiveSupport
# TimeWithZone with the existing +time_zone+.
def method_missing(sym, *args, &block)
wrap_with_time_zone time.__send__(sym, *args, &block)
+ rescue NoMethodError => e
+ raise e, e.message.sub(time.inspect, self.inspect), e.backtrace
end
private