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
This commit is contained in:
Jean-Philippe Lang 2012-08-17 14:34:10 +00:00
parent 91a09bd474
commit af5a814f4c
1 changed files with 5 additions and 1 deletions

View File

@ -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