module ActiveSupport::Dependencies::Loadable
def self.include_into(base)
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