1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/abstract_controller/railties/routes_helpers.rb

21 lines
602 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module AbstractController
module Railties
module RoutesHelpers
def self.with(routes, include_path_helpers = true)
Module.new do
define_method(:inherited) do |klass|
super(klass)
2018-10-04 20:58:29 -04:00
if namespace = klass.module_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