diff options
author | franz <Franz.Netykafka@runbox.com> | 2009-09-03 22:02:16 +0200 |
---|---|---|
committer | dmitry kim <jason@nichego.net> | 2009-09-06 17:20:46 +0400 |
commit | f62549e3a158935bfa5d49e74f6c9ee6d9f6d5ea (patch) | |
tree | a9c7d1a0d36440a0d7246cbccc9cb48f8a58d8fc | |
parent | 58fa16fbb206c87dc54d401307b6822f5952c15e (diff) |
ruby 1.9: fix method_defined?
method_defined? doesn't search in private methods, and :bound_targets is
private, so change it to respond_to?(method, include_private=true)
-rw-r--r-- | lib/rbot/load-gettext.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/load-gettext.rb b/lib/rbot/load-gettext.rb index b37369c1..b896557b 100644 --- a/lib/rbot/load-gettext.rb +++ b/lib/rbot/load-gettext.rb @@ -47,7 +47,7 @@ end # patch for ruby-gettext 1.x to cope with anonymous modules used by rbot. # bound_targets and related methods are not used nor present in 2.x, and # this patch is not needed - if method_defined? :bound_targets + if respond_to? :bound_targets, true alias :orig_bound_targets :bound_targets def bound_targets(*a) # :nodoc: |