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:
parent
91a09bd474
commit
af5a814f4c
|
@ -13,7 +13,11 @@ module ActiveRecord
|
||||||
|
|
||||||
# Undefines private Kernel#open method to allow using `open` scopes in models.
|
# Undefines private Kernel#open method to allow using `open` scopes in models.
|
||||||
# See Defect #11545 (http://www.redmine.org/issues/11545) for details.
|
# 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
|
class Relation ; undef open ; end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue