Skip to content

Instantly share code, notes, and snippets.

@michaelfeathers
Created October 3, 2012 14:33
Show Gist options
  • Save michaelfeathers/3827233 to your computer and use it in GitHub Desktop.
Save michaelfeathers/3827233 to your computer and use it in GitHub Desktop.
Code volume
# A poor man's complexity measure for a file or group of files
puts ARGF.lines.grep(/^([ \t]*)/) { $1 }.map(&:length).reduce(0, :+)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment