fukuzatsu 0.9.5 → 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/fukuzatsu/analyzer.rb +1 -1
- data/lib/fukuzatsu/version.rb +1 -1
- data/spec/fixtures/program_3.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: 622d8c7306555088bb10339f778eae368dab9968
|
4
|
+
data.tar.gz: 60dee104888382877a90a9e542cab6420b723280
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87e0a9c75f497346fbd7accdbb3a317b46e558f4b26bd41e49f11dd11e3d411a2eb0a8b803918b1228b74af6d03e7cecc625e7445028a42c65575e558d14e26a
|
7
|
+
data.tar.gz: 460ed046491b966a49184391af65b060956935083b730ead9f9d880ab8a1cb43148cd49ed594687e2500a0aa1c240ce61c71cf9806a033b47bf3d5ab11712c31
|
data/README.md
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
# Fukuzatsu
|
2
2
|
|
3
|
+
*Note: this gem is a work in progress and should not be considered production-ready until version 1.0*
|
4
|
+
|
3
5
|
Fukuzatsu ("complexity") is a tool for measuring code complexity in Ruby class files. Its analysis is based on a cycomatic complexity algorithm.
|
4
6
|
|
5
7
|
You can learn more about cyclomatic complexity at http://en.wikipedia.org/wiki/Cyclomatic_complexity
|
6
8
|
|
7
9
|
Why should you care about this kind of complexity? More complex code tends to attract bugs and to increase the friction around extending features or refactoring code.
|
8
10
|
|
9
|
-
Fukuzatsu was inspired by Saikuro, written by Zev Blut.
|
11
|
+
Fukuzatsu was created by Coraline Ada Ehmke with invaluable assistance from Mike Ziwisky (mziwisky). It was inspired by Saikuro, written by Zev Blut.
|
10
12
|
|
11
13
|
## Installation
|
12
14
|
|
data/lib/fukuzatsu/analyzer.rb
CHANGED
data/lib/fukuzatsu/version.rb
CHANGED
data/spec/fixtures/program_3.rb
CHANGED