From: dmitry kim Date: Sat, 6 Jun 2009 13:44:13 +0000 (+0400) Subject: * (gettext) relaxed check for bound_target() existance X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=8b082f999db91d5380af28d136585f6c9083090e;hp=8e055d24373d965a568431c6bacc71019553a953;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git * (gettext) relaxed check for bound_target() existance --- diff --git a/lib/rbot/load-gettext.rb b/lib/rbot/load-gettext.rb index 505a28bc..4c2dc587 100644 --- a/lib/rbot/load-gettext.rb +++ b/lib/rbot/load-gettext.rb @@ -42,7 +42,7 @@ begin # 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 instance_methods.include?('bound_targets') and not instance_methods.include?('orig_bound_targets') + if methods.include? 'bound_targets' alias :orig_bound_targets :bound_targets def bound_targets(*a) # :nodoc: