method
with
v3.1.0 -
Show latest stable
- Class:
AbstractController::Railties::RoutesHelpers
with(routes)public
No documentation available.
# 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