Methods
W
Class Public methods
with(routes)
# File actionpack/lib/abstract_controller/railties/routes_helpers.rb, line 4
def self.with(routes)
  Module.new do
    define_method(:inherited) do |klass|
      super(klass)
      if namespace = klass.parents.detect {|m| m.respond_to?(:_railtie) }
        klass.send(:include, namespace._railtie.routes.url_helpers)
      else
        klass.send(:include, routes.url_helpers)
      end
    end
  end
end