Created
February 19, 2012 04:36
-
-
Save therealadam/1862005 to your computer and use it in GitHub Desktop.
A lenient cane script for a Rails project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
max_violations=0 # We run a tight ship... | |
complexity_max=60 # ...but we've got stuff to clean up | |
cane \ | |
--max-violations $max_violations \ | |
--abc-glob '{app,lib}/**/*.rb' \ | |
--abc-max=$complexity_max \ | |
--no-style \ | |
--no-doc | |
# TODO include SimpleCov metrics | |
# TODO start tracking style and docs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment