diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2008-05-31 15:51:28 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2008-05-31 15:51:28 -0700 |
commit | f32bceeee1adb0979f49db7e8111ba318e23c85c (patch) | |
tree | 56cc30f3e141cf702fcc1512d9d0355a51cc8db4 /activesupport/lib/active_support/multibyte | |
parent | 9b75483bf361f44046d1cb86bd2acae6c4f856f3 (diff) | |
parent | 7391f7728d96c2ec0113de57f3316c191043ad2c (diff) | |
download | rails-f32bceeee1adb0979f49db7e8111ba318e23c85c.tar.gz rails-f32bceeee1adb0979f49db7e8111ba318e23c85c.tar.bz2 rails-f32bceeee1adb0979f49db7e8111ba318e23c85c.zip |
Merge branch 'master' of git@github.com:rails/rails
Diffstat (limited to 'activesupport/lib/active_support/multibyte')
-rw-r--r-- | activesupport/lib/active_support/multibyte/chars.rb | 12 |
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 |