BigW Consortium Gitlab

routing_draw.rb 242 Bytes
Newer Older
1 2 3 4 5 6 7
# Adds draw method into Rails routing
# It allows us to keep routing splitted into files
class ActionDispatch::Routing::Mapper
  def draw(routes_name)
    instance_eval(File.read(Rails.root.join("config/routes/#{routes_name}.rb")))
  end
end