Flowdock
method

include_into

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActiveSupport::Dependencies::Loadable
include_into(base) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/dependencies.rb, line 246
      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
Register or log in to add new notes.