mccabe 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -4
- data/lib/mccabe/parser.rb +1 -1
- data/lib/mccabe/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72379d20b7c7ea824390cb61969e45cb5a9f505e
|
4
|
+
data.tar.gz: 1001d47499a6d291601a23564f439b13d493d8bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46f4510109cecbbf18c989bd796b5bf5f45526a5ad14c6943e23f5385462e02362dfbeb43f353843bc55b765195ad56b25a7912da102f6308ce64dfcdec49a5c
|
7
|
+
data.tar.gz: 755647bd30d9dc774c9bb9990ab8fad5ee18a0ccffc1583a44aecef6c75b46db64477b5ba09212a6ec58834820766aaa2f88c695f5de7424c65b986f9974d5b4
|
data/README.md
CHANGED
@@ -16,9 +16,6 @@ optionally specify your own threshold as the first argument. The default
|
|
16
16
|
threshold is 4. You will get error messages for any methods which have
|
17
17
|
complexity greater than the threshold.
|
18
18
|
|
19
|
-
If the first argument is not an integer, it will be interpreted as a file
|
20
|
-
pattern (any other arguments are also file patterns).
|
21
|
-
|
22
19
|
Note that the script only considers files with .rb extensions, so that it
|
23
20
|
doesn't attempt to parse other languages as Ruby. So, if you have
|
24
21
|
extensionless Ruby scripts, you won't be able to use this on them.
|
@@ -26,9 +23,10 @@ extensionless Ruby scripts, you won't be able to use this on them.
|
|
26
23
|
Examples:
|
27
24
|
```
|
28
25
|
mccabe file1 ../file2
|
29
|
-
mccabe 3
|
26
|
+
mccabe file1 --threshold 3 # using a different threshold
|
30
27
|
mccabe *.rb # wildcards work, too
|
31
28
|
mccabe . # can also look through entire directories
|
29
|
+
mccabe . --quiet # will not print to stdout, only return success/failure status code
|
32
30
|
```
|
33
31
|
|
34
32
|
## Contributing
|
data/lib/mccabe/parser.rb
CHANGED
data/lib/mccabe/version.rb
CHANGED