Skip to content

Instantly share code, notes, and snippets.

@mocoso
Created June 18, 2013 10:53
Show Gist options
  • Save mocoso/5804397 to your computer and use it in GitHub Desktop.
Save mocoso/5804397 to your computer and use it in GitHub Desktop.
Rails project stats
# Number of unique 'page' templates
find . * | grep -e "^app/views/.*/[^_][^/]*\.html" | grep -v 'app/views/layouts' | wc -l
# Number of form fields
grep -r "text_field\|text_area\|file_field" ./app/views | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment