Skip to content

Instantly share code, notes, and snippets.

@tobiashm
Created January 2, 2014 10:07
Show Gist options
  • Save tobiashm/8217213 to your computer and use it in GitHub Desktop.
Save tobiashm/8217213 to your computer and use it in GitHub Desktop.
List missing Rails routes from production log
grep -e "(No route matches" log/production.log | awk '{print $(NF-1)," ",$NF}' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment