Rails 4 routing issue

22 views
Skip to first unread message

Maciej Nowak

unread,
Dec 26, 2013, 8:15:38 AM12/26/13
to rubyonra...@googlegroups.com
I am migrating our application from 3.x to 4.0.2 and I have following problem :


Rails 4 generates totally different routes in this case and it brakes some of our functionalities. Maybe I am not familiar with new way of creating routes but in release notes there was nothing said about it. At least about this part of routes. How can I make these routes look like in rails 3 ?

Josh Jibwa White

unread,
Jan 1, 2014, 2:15:20 PM1/1/14
to rubyonra...@googlegroups.com
I ran into some similar issues while upgrading some of my sites. My problems were mainly because I wasn't using standard resourceful routes. The simplest way to fix this is to just specify each route manually. If you have a lot of similar patterns with other resources you could just write a function to create each route pattern.

Here is a short example:

routes.rb

delete 'subscriptions', to: 'subscriptions', as: :subscriptions
get 'subscriptions/edit', to: 'subscriptions#edit', as: :edit_subscriptions

Rails 4 Routes :

subscriptions DELETE /subscriptions(.:format)               subscriptions#subscriptions
edit_subscriptions GET    /subscriptions/edit(.:format)          subscriptions#edit          
Reply all
Reply to author
Forward
0 new messages