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/action_controller/railties/url_helpers.rb
2010-02-26 14:31:29 -08:00

14 lines
No EOL
296 B
Ruby

module ActionController
class Railtie
module UrlHelpers
def self.with(router)
Module.new do
define_method(:inherited) do |klass|
super(klass)
klass.send(:include, router.named_url_helpers)
end
end
end
end
end
end