6 lines
151 B
Ruby
6 lines
151 B
Ruby
class ActionDispatch::Routing::Mapper
|
|
def draw(route_file)
|
|
instance_eval(File.read(Rails.root.join("config/routes/#{route_file}.rb")))
|
|
end
|
|
end
|