mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
564 B
Ruby
18 lines
564 B
Ruby
module AbstractController
|
|
module Railties
|
|
module RoutesHelpers
|
|
def self.with(routes, include_path_helpers = true)
|
|
Module.new do
|
|
define_method(:inherited) do |klass|
|
|
super(klass)
|
|
if namespace = klass.parents.detect { |m| m.respond_to?(:railtie_routes_url_helpers) }
|
|
klass.include(namespace.railtie_routes_url_helpers(include_path_helpers))
|
|
else
|
|
klass.include(routes.url_helpers(include_path_helpers))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|