From af5a814f4cf11d3c288b00e0b7b9d89b7a5ef74d Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 17 Aug 2012 14:34:10 +0000 Subject: [PATCH] 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 --- config/initializers/10-patches.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.5