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!
|
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! |
|||
|
|
|
You can do that: routes.rb
lib/application_routes.rb
lib/rest_api_routes.rb
UPDATE: Rails edge just got a great addition, multiple route files:
This will come handy for breaking down complex route files in large apps. |
|||||||||||||
|
|
In Rails3, you can set the configs in config/application.rb
|
|||||||||||
|