aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/multibyte
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-05-31 14:54:17 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-05-31 14:55:02 -0700
commit4e4bcb4c6b08ed392cd5576dcfc252ef574a1b88 (patch)
tree3ee0296a3dfbdba16f2e113453a58207d52830db /activesupport/lib/active_support/multibyte
parent2243ffd1ffe3a129af20a33e72574f7ee4534730 (diff)
downloadrails-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/multibyte')
-rw-r--r--activesupport/lib/active_support/multibyte/chars.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb
index ee716de39e..185d03020c 100644
--- a/activesupport/lib/active_support/multibyte/chars.rb
+++ b/activesupport/lib/active_support/multibyte/chars.rb
@@ -40,13 +40,15 @@ module ActiveSupport::Multibyte #:nodoc:
# core dumps. Don't go there.
@string
end
-
+
# Make duck-typing with String possible
- def respond_to?(method)
- super || @string.respond_to?(method) || handler.respond_to?(method) ||
- (method.to_s =~ /(.*)!/ && handler.respond_to?($1)) || false
+ def respond_to?(method, include_priv = false)
+ super || @string.respond_to?(method, include_priv) ||
+ handler.respond_to?(method, include_priv) ||
+ (method.to_s =~ /(.*)!/ && handler.respond_to?($1, include_priv)) ||
+ false
end
-
+
# Create a new Chars instance.
def initialize(str)
@string = str.respond_to?(:string) ? str.string : str