ruby-on-railsruby-on-rails-3routes

Rails 3: I want to list all paths defined in my rails application


I want to list all defined helper path functions (that are created from routes) in my rails 3 application, if that is possible.

Thanks,


Solution

  • new solution

    rails routes
    

    deprecated

    rake routes
    

    or

    bundle exec rake routes