RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Routes: rake routes 10x faster with search feature

https://rubygems.org/gems/routes - a simple gem to parse your rails routes 10 times faster with the possibility to search in them like this “routes events show” to display all the routes containing the words events and show.

Comments

Really unimpressive. Caches the output of rake routes and then greps that file. So, when you add a route, it has to regenerate the cache, taking away all that speed increase. Only good if you’re running rake routes a bunch of times in a row without changing the routes.rb file.

Hi Chris, Thanks for your review. I understand what you have said but you don’t seem to know what it is to work on a big rails project.

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in