Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

up vote 16 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.

share|improve this answer
Of course! Thank you! :-) – lzap Jan 18 '12 at 9:01
1  
This is only working in development for me, once I start caching the classes it doesn't work anymore – deb Feb 22 '12 at 16:07
We have this setup & is working well in production too. – Arun Kumar Arjunan Feb 23 '12 at 2:41
3  
The multiple route file support was removed: github.com/rails/rails/commit/… – Henrik N Jul 2 '12 at 11:43

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

config.paths.config.routes.concat Dir[Rails.root.join("config/routes/*.rb")]
share|improve this answer
1  
this worked better for me rather than requiring the files in routes.rb – deb Feb 22 '12 at 16:40
3  
What's the order of the routes with this approach? – Robin Mar 31 '12 at 19:22
@Robin I experimented in our app on my OS X dev machine. I put numbers in front of the filename and the routes in "1_routes.rb" came before "2_routes.rb", but after when I changed the "1" to a "3". But it seems the order of Dir.entries is not guaranteed, so you probably need Dir[…].sort to rely on this. – Henrik N Mar 12 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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