basgren / railways

A plugin for RubyMine and IntelliJ IDEA Ultimate that adds a panel with routes of Ruby on Rails application.
MIT License
46 stars 18 forks source link

Link to the route in the routes.rb file #13

Closed ddnexus closed 9 years ago

ddnexus commented 9 years ago

Not so fundamental, but very nice to have feature. Having a link pointing to the defining line in the routes file.

basgren commented 9 years ago

Thanks, Domizio, I'm already thinking about it. There a some difficulties with that, as 'rake routes' doesn't provide information about where a route was defined, and this may be tricky to detect when, you define routes using helpers (for example, devise_for) or loops.

ddnexus commented 9 years ago

Very true :(