Is it possible to split Rails 3.X routes.rb file?

We have so many resources it is difficult to find them. I would like to split at least APP and REST API routes.

Thanks!

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

You can do that:

routes.rb

require 'application_routes'
require 'rest_api_routes'

lib/application_routes.rb

YourApplication::Application.routes.draw do
  # Application related routes
end

lib/rest_api_routes.rb

YourApplication::Application.routes.draw do
  # REST API related routes
end

UPDATE:

Rails edge just got a great addition, multiple route files:

# config/routes.rb
draw :admin

# config/routes/admin.rb
namespace :admin do
  resources :posts
end

This will come handy for breaking down complex route files in large apps.

link|improve this answer
Of course! Thank you! :-) – lzap Jan 18 at 9:01
This is only working in development for me, once I start caching the classes it doesn't work anymore – deb Feb 22 at 16:07
We have this setup & is working well in production too. – Arun Kumar Arjunan Feb 23 at 2:41
feedback

In Rails3, you can set the configs in config/application.rb

config.paths.config.routes.concat Dir[Rails.root.join("config/routes/*.rb")]
link|improve this answer
this worked better for me rather than requiring the files in routes.rb – deb Feb 22 at 16:40
What's the order of the routes with this approach? – Robin Mar 31 at 19:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.