Skip to content

Instantly share code, notes, and snippets.

@techbelly
Created June 30, 2012 16:31
Show Gist options
  • Select an option

  • Save techbelly/3024543 to your computer and use it in GitHub Desktop.

Select an option

Save techbelly/3024543 to your computer and use it in GitHub Desktop.
Very rough number of methods in rails.
$ git clone https://github.com/rails/rails.git
Without tests
$ find rails -name \*.rb | grep -v test | xargs grep '^[[:space:]]\+def' | wc -l
5587
Wit tests
$ find rails -name \*.rb | xargs grep '^[[:space:]]\+def' | wc -l
17971
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment