diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-05-31 14:54:17 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-05-31 14:55:02 -0700 |
commit | 4e4bcb4c6b08ed392cd5576dcfc252ef574a1b88 (patch) | |
tree | 3ee0296a3dfbdba16f2e113453a58207d52830db /activesupport/lib/active_support/time_with_zone.rb | |
parent | 2243ffd1ffe3a129af20a33e72574f7ee4534730 (diff) | |
download | rails-4e4bcb4c6b08ed392cd5576dcfc252ef574a1b88.tar.gz rails-4e4bcb4c6b08ed392cd5576dcfc252ef574a1b88.tar.bz2 rails-4e4bcb4c6b08ed392cd5576dcfc252ef574a1b88.zip |
Ruby 1.8.7 compat: TimeWithZone# and Chars#respond_to? pass along the include_private argument
Diffstat (limited to 'activesupport/lib/active_support/time_with_zone.rb')
-rw-r--r-- | activesupport/lib/active_support/time_with_zone.rb | 8 |
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 ece95eeae9..bfc5b16039 100644 --- a/activesupport/lib/active_support/time_with_zone.rb +++ b/activesupport/lib/active_support/time_with_zone.rb @@ -248,14 +248,14 @@ module ActiveSupport def marshal_load(variables) initialize(variables[0], ::Time.send!(:get_zone, variables[1]), variables[2]) end - + # Ensure proxy class responds to all methods that underlying time instance responds to. - def respond_to?(sym) + def respond_to?(sym, include_priv = false) # consistently respond false to acts_like?(:date), regardless of whether #time is a Time or DateTime return false if sym.to_s == 'acts_like_date?' - super || time.respond_to?(sym) + super || time.respond_to?(sym, include_priv) end - + # Send the missing method to +time+ instance, and wrap result in a new TimeWithZone with the existing +time_zone+. def method_missing(sym, *args, &block) result = time.__send__(sym, *args, &block) |