How to target specific controller in rake routes command
Most of time i need to look at my routes and as project increases so the list of routes and it's get confusing to find a specific routes using rake routes command so here is the answer
 rake routes CONTROLLER=controller_name For Example
 rake routes CONTROLLER=posts 

 
 
 Posts
Posts
 
 

Thanks for this tip ) I always forget it...
ReplyDeleteThanks, very helpful
ReplyDeleteNote; you must specify pluralized controller name!
ReplyDelete