skunk 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/Gemfile.lock +5 -5
- data/lib/skunk/cli/commands/status_reporter.rb +1 -1
- data/lib/skunk/version.rb +1 -1
- data/skunk.gemspec +1 -1
- metadata +1 -4
- data/bin/console +0 -16
- data/bin/setup +0 -8
- data/bin/skunk +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c12da5e81bec59fc0620d1ff4ef056f03e433b104de229bf581df3ffe05779ac
|
4
|
+
data.tar.gz: b8cd95862eb27724f97ed1edbc3b098d004ad36eea028f46e629f58ab4b60fd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9db4683ff0b5d486593fef100fa57f0cd5882cef38c82f64cc9173058cc6bfb2ae61a6658b8f624fe1060d05482b7c1c1c58c63a18d9e38df68a44dec1471728
|
7
|
+
data.tar.gz: a4642c478749e505ce8be2254d18b4303a6a78a06f80279dc93fd2b190f27c05ff24bb218fae6d1053fc54eeeb48d4e25eb2a2d9007657cd763db5e89e60d23f
|
data/CHANGELOG.md
CHANGED
@@ -6,7 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased] [(commits)](https://github.com/fastruby/skunk/compare/v0.4.0...HEAD)
|
8
8
|
|
9
|
-
## [
|
9
|
+
## [0.4.1] [(commits)](https://github.com/fastruby/skunk/compare/v0.4.0...v0.4.1)
|
10
|
+
* [BUGFIX] Fixes table width issues (by [@etagwerker][])
|
11
|
+
|
12
|
+
## [0.4.0] [(commits)](https://github.com/fastruby/skunk/compare/v0.3.2...v0.4.0)
|
10
13
|
* [FEATURE] Add `--version` support to the command line. (by [@bronzdoc][])
|
11
14
|
* [FEATURE] Stop accepting `-p <path>` in the command line. It's redundant and it's not working anyway. (by [@etagwerker][])
|
12
15
|
* [BUGFIX] Change "StinkScore" formula to skip `churn_times_cost` (by [@etagwerker][])
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
skunk (0.
|
4
|
+
skunk (0.4.0)
|
5
5
|
rubycritic (~> 4.0)
|
6
6
|
terminal-table (~> 1.8.0)
|
7
7
|
|
@@ -66,9 +66,9 @@ GEM
|
|
66
66
|
ruby-progressbar (~> 1.7)
|
67
67
|
unicode-display_width (>= 1.4.0, < 1.7)
|
68
68
|
ruby-progressbar (1.10.1)
|
69
|
-
ruby_parser (3.14.
|
69
|
+
ruby_parser (3.14.2)
|
70
70
|
sexp_processor (~> 4.9)
|
71
|
-
rubycritic (4.3.
|
71
|
+
rubycritic (4.3.3)
|
72
72
|
flay (~> 2.8)
|
73
73
|
flog (~> 4.4)
|
74
74
|
launchy (= 2.4.3)
|
@@ -76,10 +76,10 @@ GEM
|
|
76
76
|
rainbow (~> 3.0)
|
77
77
|
reek (~> 5.0, < 6.0)
|
78
78
|
ruby_parser (~> 3.8)
|
79
|
-
simplecov (
|
79
|
+
simplecov (>= 0.17.0)
|
80
80
|
tty-which (~> 0.4.0)
|
81
81
|
virtus (~> 1.0)
|
82
|
-
sexp_processor (4.
|
82
|
+
sexp_processor (4.14.0)
|
83
83
|
simplecov (0.17.1)
|
84
84
|
docile (~> 1.1)
|
85
85
|
json (>= 1.8, < 3)
|
@@ -12,7 +12,7 @@ module Skunk
|
|
12
12
|
|
13
13
|
HEADINGS = %w[file stink_score churn_times_cost churn cost coverage].freeze
|
14
14
|
HEADINGS_WITHOUT_FILE = HEADINGS - %w[file]
|
15
|
-
HEADINGS_WITHOUT_FILE_WIDTH = HEADINGS_WITHOUT_FILE.size *
|
15
|
+
HEADINGS_WITHOUT_FILE_WIDTH = HEADINGS_WITHOUT_FILE.size * 17 # padding
|
16
16
|
|
17
17
|
TEMPLATE = ERB.new(<<-TEMPL
|
18
18
|
<%= _ttable %>\n
|
data/lib/skunk/version.rb
CHANGED
data/skunk.gemspec
CHANGED
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
30
30
|
# Specify which files should be added to the gem when it is released.
|
31
31
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
32
32
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
33
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
33
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|test|spec|features)/}) }
|
34
34
|
end
|
35
35
|
spec.bindir = "exe"
|
36
36
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skunk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ernesto Tagwerker
|
@@ -186,9 +186,6 @@ files:
|
|
186
186
|
- LICENSE.txt
|
187
187
|
- README.md
|
188
188
|
- Rakefile
|
189
|
-
- bin/console
|
190
|
-
- bin/setup
|
191
|
-
- bin/skunk
|
192
189
|
- exe/skunk
|
193
190
|
- lib/skunk.rb
|
194
191
|
- lib/skunk/cli/application.rb
|
data/bin/console
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
#!/usr/bin/env ruby
|
4
|
-
|
5
|
-
require "bundler/setup"
|
6
|
-
require "skunk"
|
7
|
-
|
8
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
9
|
-
# with your gem easier. You can also use a different console, if you like.
|
10
|
-
|
11
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
12
|
-
# require "pry"
|
13
|
-
# Pry.start
|
14
|
-
|
15
|
-
require "irb"
|
16
|
-
IRB.start(__FILE__)
|
data/bin/setup
DELETED
data/bin/skunk
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
../exe/skunk
|