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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9049fb6f92f869e6d799c87e622079d696eb8f7b
4
- data.tar.gz: 7e75d3585e1b60d3d557dec69d74afa14393b8f4
3
+ metadata.gz: 73ea568ff6caeb2fb3b13729bc54d6434d305897
4
+ data.tar.gz: db734f3c3561a2732c8e13e727754aef01106920
5
5
  SHA512:
6
- metadata.gz: f3f8382ccb36cc0acbf279213e59d38b3838279d66427a78be19ececa27ccb8b328e966c0990f43fd28bed8adeec8e418343661eb723c69a85e7c3fe85fc797b
7
- data.tar.gz: 5c98337d7d5654c973fe0281802fd53f96569625bc8015bbb1ac904d0c3e3eb2c242023f466625b6181943a9cef7fedd8d3ec5a552053493d51401f540e886fc
6
+ metadata.gz: 3b768bbffc456ecd733e1356b1f2f779b12e7dc38400fd41a7b80b7796ce70a79fb7017cd4fcd896198a402bfcdd3ff1fdf0114634e31c3dc688a376adfe2615
7
+ data.tar.gz: 48187f88c6b39bc3d79f8fc7c3ea49a9a9def9992eb9f8ca0877ea5e5eff642777b5e9a2132976f6e11d9248873e8df59d3df16efbd2ef92687bfa52f568f663
@@ -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")
@@ -1,3 +1,3 @@
1
1
  module Fukuzatsu
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
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.0
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: {}