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 routesand 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 runningrake routesa 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