From: Jean-Philippe Lang Date: Fri, 17 Aug 2012 14:34:10 +0000 (+0000) Subject: Prevents "Overwriting existing method Issue.open" warning (#11545). X-Git-Tag: 2.1.0~124 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=af5a814f4cf11d3c288b00e0b7b9d89b7a5ef74d;p=redmine.git Prevents "Overwriting existing method Issue.open" warning (#11545). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10208 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/config/initializers/10-patches.rb b/config/initializers/10-patches.rb index c2d0a5fad..52e26a25b 100644 --- a/config/initializers/10-patches.rb +++ b/config/initializers/10-patches.rb @@ -13,7 +13,11 @@ module ActiveRecord # Undefines private Kernel#open method to allow using `open` scopes in models. # See Defect #11545 (http://www.redmine.org/issues/11545) for details. - class Base ; undef open ; end + class Base + class << self + undef open + end + end class Relation ; undef open ; end end