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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c775bb1b34ac224cae3a0485f7279207f2454d2b03cec80f8033d596722b244
4
- data.tar.gz: f24e05b044b854d5389ae7ca3f4b1399f2cea4ea154940dafc6ebae7ed3e8c35
3
+ metadata.gz: c12da5e81bec59fc0620d1ff4ef056f03e433b104de229bf581df3ffe05779ac
4
+ data.tar.gz: b8cd95862eb27724f97ed1edbc3b098d004ad36eea028f46e629f58ab4b60fd2
5
5
  SHA512:
6
- metadata.gz: 0ee6532b02608d746f58317d525da5c0350522326f6431ef2a078d20d721ac5656aea422229915abb70a64f24d4a9b7ed687ce6a69b8bdba75d571b88257b4a1
7
- data.tar.gz: 5c6a3555e1b9e9ac3bba2497b71229350ef493dcbe59f203a01b1175009bfc47fa0821fd061543e8ef72bfaf3e0b4b671271a4c35b3a46f8eba0e6cd311ada0c
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
- ## [Unreleased] [(commits)](https://github.com/fastruby/skunk/compare/v0.3.2...v0.4.0)
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.3.2)
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.1)
69
+ ruby_parser (3.14.2)
70
70
  sexp_processor (~> 4.9)
71
- rubycritic (4.3.2)
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 (~> 0.17.0)
79
+ simplecov (>= 0.17.0)
80
80
  tty-which (~> 0.4.0)
81
81
  virtus (~> 1.0)
82
- sexp_processor (4.13.0)
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 # padding
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Skunk
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
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.0
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
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/bin/skunk DELETED
@@ -1 +0,0 @@
1
- ../exe/skunk