method
include_into
v6.0.0 -
Show latest stable
- Class:
ActiveSupport::Dependencies::Loadable
include_into(base)public
No documentation available.
# File activesupport/lib/active_support/dependencies.rb, line 247
def self.include_into(base)
base.include(self)
if base.instance_method(:load).owner == base
base.remove_method(:load)
end
if base.instance_method(:require).owner == base
base.remove_method(:require)
end
end