Rails 4 routing issue

I am migrating our application from 3.x to 4.0.2 and I have following problem :

https://gist.github.com/Keqi/46f8f281ddeef7107c14

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 ?

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