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-03-30 14:05:42 -05:00

14 lines
293 B
Ruby

module ActionController
module Railties
module UrlHelpers
def self.with(routes)
Module.new do
define_method(:inherited) do |klass|
super(klass)
klass.send(:include, routes.url_helpers)
end
end
end
end
end
end