fukuzatsu 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CODE_OF_CONDUCT.md +12 -0
- data/README.md +8 -0
- data/fukuzatsu.gemspec +1 -1
- data/lib/fukuzatsu/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73ea568ff6caeb2fb3b13729bc54d6434d305897
|
4
|
+
data.tar.gz: db734f3c3561a2732c8e13e727754aef01106920
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b768bbffc456ecd733e1356b1f2f779b12e7dc38400fd41a7b80b7796ce70a79fb7017cd4fcd896198a402bfcdd3ff1fdf0114634e31c3dc688a376adfe2615
|
7
|
+
data.tar.gz: 48187f88c6b39bc3d79f8fc7c3ea49a9a9def9992eb9f8ca0877ea5e5eff642777b5e9a2132976f6e11d9248873e8df59d3df16efbd2ef92687bfa52f568f663
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
## Version 0.4
|
3
|
+
|
4
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
5
|
+
|
6
|
+
If any participant in this project has issues or takes exception with a contribution, they are obligated to provide constructive feedback and never resort to personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
7
|
+
|
8
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
9
|
+
|
10
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
11
|
+
|
12
|
+
We promise to extend courtesy and respect to everyone involved in this project regardless of gender, gender identity, sexual orientation, ability or disability, ethnicity, religion, or level of experience.
|
data/README.md
CHANGED
@@ -20,8 +20,16 @@ This installs the CLI tool.
|
|
20
20
|
|
21
21
|
fuku parse path/to/file/my_file.rb
|
22
22
|
|
23
|
+
fuku parse path/to/file/my_file.rb -f html
|
24
|
+
# Writes to doc/fuzuzatsu/path/to_file/my_file.rb.htm
|
25
|
+
|
26
|
+
fuku parse path/to/file/my_file.rb -f csv
|
27
|
+
# Writes to doc/fuzuzatsu/path/to_file/my_file.rb.csv
|
28
|
+
|
23
29
|
## Contributing
|
24
30
|
|
31
|
+
Please note that this project is released with a [Contributor Code of Conduct](https://gitlab.com/coraline/fukuzatsu/blob/master/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
|
32
|
+
|
25
33
|
1. Fork it
|
26
34
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
35
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
data/fukuzatsu.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["coraline@idolhands.com"]
|
11
11
|
spec.summary = "A simple code complexity analyzer."
|
12
12
|
spec.description = "Calculates the cyclomatic complexity of methods within a given file."
|
13
|
-
spec.homepage = "https://gitlab.com/coraline/fukuzatsu"
|
13
|
+
spec.homepage = "https://gitlab.com/coraline/fukuzatsu/blob/master/README.md"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/fukuzatsu/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fukuzatsu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bantik
|
@@ -146,6 +146,7 @@ extra_rdoc_files: []
|
|
146
146
|
files:
|
147
147
|
- ".gitignore"
|
148
148
|
- ".rspec"
|
149
|
+
- CODE_OF_CONDUCT.md
|
149
150
|
- Gemfile
|
150
151
|
- LICENSE.txt
|
151
152
|
- README.md
|
@@ -169,7 +170,7 @@ files:
|
|
169
170
|
- spec/fixtures/program_3.rb
|
170
171
|
- spec/formatters/csv_spec.rb
|
171
172
|
- spec/spec_helper.rb
|
172
|
-
homepage: https://gitlab.com/coraline/fukuzatsu
|
173
|
+
homepage: https://gitlab.com/coraline/fukuzatsu/blob/master/README.md
|
173
174
|
licenses:
|
174
175
|
- MIT
|
175
176
|
metadata: {}
|