gouteur 1.0.1 → 1.0.2

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: 174d0cdcc37fbca2d808a91be97a17feb70140ef403de6f95f91b0ce74e8beda
4
- data.tar.gz: 6f886d8d85c43065b821371a916e44414580a5e5ead255d811916942d9387b70
3
+ metadata.gz: 9cced511802f382d5ebaf4035fd7b06e98f0eca07e72e29c08ddae2b8de01d2f
4
+ data.tar.gz: 2854883c107ac874febb0e1aeb1c939d5c621bffed23feb38f22a63e1aaa0d0d
5
5
  SHA512:
6
- metadata.gz: 7806e1a42dacd49fa222c7eb9c73f21373786540c7a8d2c06ae8bba06dfb71a5d98e8e81ff6bfcda063da86b91d377c7a2b01ab2a5ee4e6bf0fdeac638a472b6
7
- data.tar.gz: 84c3649159b02083c7ac31d94e14657a04807cc05f99f41cea3ea35939106394e88337118ce2c72a384fa6ec0c41f83d3c92bf3ccd9ff980c6fcdde9b4e9b571
6
+ metadata.gz: 34a5301cfb9d2c421079334b0426763c70aeeffcd9e1f270385979403e0506d7753d7e1eba9db1a3741b636154861fb0833c3945a6c1fe60c0bf0ecf3d5410c6
7
+ data.tar.gz: 066d049552256df89bede60548f584e5806cfbe4f6d0a470f23ed40d5fb8c0c1554c7f9ef6cf75c6360e7c77d21adc2ac2d4c22e15df71c94d82cb9a8811ce95
@@ -8,7 +8,7 @@ jobs:
8
8
 
9
9
  strategy:
10
10
  matrix:
11
- ruby: [ '2.5', '3.0', 'ruby-head' ]
11
+ ruby: [ '2.6', '3.0', 'ruby-head' ]
12
12
 
13
13
  steps:
14
14
  - uses: actions/checkout@v2
data/.rubocop.yml CHANGED
@@ -6,11 +6,20 @@ AllCops:
6
6
  SuggestExtensions: false
7
7
  TargetRubyVersion: 2.5
8
8
 
9
+ Gemspec/RequireMFA:
10
+ Enabled: false
11
+
9
12
  Layout/LineLength:
10
13
  Max: 80
11
14
 
12
15
  Lint/AmbiguousBlockAssociation:
13
16
  Enabled: false
14
17
 
18
+ Lint/AmbiguousOperatorPrecedence:
19
+ Enabled: false
20
+
21
+ Style/FetchEnvVar:
22
+ Enabled: false
23
+
15
24
  Style/FrozenStringLiteralComment:
16
25
  Enabled: false
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.2] - 2022-09-24
4
+
5
+ ### Fixed
6
+
7
+ - Fixed error message when a repo's `before` task fails
8
+ - Fixed dependency version mismatch detection for recent bundler versions
9
+
3
10
  ## [1.0.1] - 2021-03-09
4
11
 
5
12
  ### Fixed
data/Gemfile CHANGED
@@ -13,4 +13,4 @@ gem 'relaxed-rubocop'
13
13
 
14
14
  gem 'example_repo', '0.1.0', path: './spec/gouteur/example_repo'
15
15
 
16
- gem 'byebug'
16
+ gem 'debug'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gouteur (1.0.0)
4
+ gouteur (1.0.2)
5
5
 
6
6
  PATH
7
7
  remote: spec/gouteur/example_repo
@@ -12,48 +12,57 @@ GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
14
  ast (2.4.2)
15
- byebug (11.1.3)
16
- diff-lcs (1.4.4)
17
- parallel (1.20.1)
18
- parser (3.0.0.0)
15
+ debug (1.6.2)
16
+ irb (>= 1.3.6)
17
+ reline (>= 0.3.1)
18
+ diff-lcs (1.5.0)
19
+ io-console (0.5.11)
20
+ irb (1.4.1)
21
+ reline (>= 0.3.0)
22
+ json (2.6.2)
23
+ parallel (1.22.1)
24
+ parser (3.1.2.1)
19
25
  ast (~> 2.4.1)
20
- rainbow (3.0.0)
21
- rake (13.0.3)
22
- regexp_parser (2.0.3)
26
+ rainbow (3.1.1)
27
+ rake (13.0.6)
28
+ regexp_parser (2.5.0)
23
29
  relaxed-rubocop (2.5)
24
- rexml (3.2.4)
25
- rspec (3.10.0)
26
- rspec-core (~> 3.10.0)
27
- rspec-expectations (~> 3.10.0)
28
- rspec-mocks (~> 3.10.0)
29
- rspec-core (3.10.1)
30
- rspec-support (~> 3.10.0)
31
- rspec-expectations (3.10.1)
30
+ reline (0.3.1)
31
+ io-console (~> 0.5)
32
+ rexml (3.2.5)
33
+ rspec (3.11.0)
34
+ rspec-core (~> 3.11.0)
35
+ rspec-expectations (~> 3.11.0)
36
+ rspec-mocks (~> 3.11.0)
37
+ rspec-core (3.11.0)
38
+ rspec-support (~> 3.11.0)
39
+ rspec-expectations (3.11.1)
32
40
  diff-lcs (>= 1.2.0, < 2.0)
33
- rspec-support (~> 3.10.0)
34
- rspec-mocks (3.10.2)
41
+ rspec-support (~> 3.11.0)
42
+ rspec-mocks (3.11.1)
35
43
  diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.10.0)
37
- rspec-support (3.10.2)
38
- rubocop (1.9.1)
44
+ rspec-support (~> 3.11.0)
45
+ rspec-support (3.11.1)
46
+ rubocop (1.36.0)
47
+ json (~> 2.3)
39
48
  parallel (~> 1.10)
40
- parser (>= 3.0.0.0)
49
+ parser (>= 3.1.2.1)
41
50
  rainbow (>= 2.2.2, < 4.0)
42
51
  regexp_parser (>= 1.8, < 3.0)
43
- rexml
44
- rubocop-ast (>= 1.2.0, < 2.0)
52
+ rexml (>= 3.2.5, < 4.0)
53
+ rubocop-ast (>= 1.20.1, < 2.0)
45
54
  ruby-progressbar (~> 1.7)
46
55
  unicode-display_width (>= 1.4.0, < 3.0)
47
- rubocop-ast (1.4.1)
48
- parser (>= 2.7.1.5)
56
+ rubocop-ast (1.21.0)
57
+ parser (>= 3.1.1.0)
49
58
  ruby-progressbar (1.11.0)
50
- unicode-display_width (2.0.0)
59
+ unicode-display_width (2.3.0)
51
60
 
52
61
  PLATFORMS
53
62
  ruby
54
63
 
55
64
  DEPENDENCIES
56
- byebug
65
+ debug
57
66
  example_repo (= 0.1.0)!
58
67
  gouteur!
59
68
  rake (~> 13.0)
@@ -105,7 +105,7 @@ module Gouteur
105
105
  def indicates_incompatible_semver?(result)
106
106
  result.exitstatus == BUNDLER_INCOMPATIBLE_VERSION_CODE ||
107
107
  result.exitstatus == BUNDLER_GEM_NOT_FOUND_CODE &&
108
- result.stderr =~ /following version/
108
+ result.stderr =~ /following gems matching|following version/
109
109
  end
110
110
 
111
111
  def handle_incompatible_semver
data/lib/gouteur/shell.rb CHANGED
@@ -29,7 +29,7 @@ module Gouteur
29
29
  attr_reader :stdout, :stderr, :exitstatus
30
30
 
31
31
  def initialize(args:, pwd:, stdout:, stderr:, status:)
32
- @args = args
32
+ @args = Array(args)
33
33
  @pwd = pwd
34
34
  @stdout = stdout
35
35
  @stderr = stderr
@@ -1,3 +1,3 @@
1
1
  module Gouteur
2
- VERSION = '1.0.1'.freeze
2
+ VERSION = '1.0.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gouteur
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Janosch Müller
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-09 00:00:00.000000000 Z
11
+ date: 2022-09-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Run tests of dependent gems against your changes.
14
14
  email:
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  requirements: []
70
- rubygems_version: 3.2.3
70
+ rubygems_version: 3.4.0.dev
71
71
  signing_key:
72
72
  specification_version: 4
73
73
  summary: See if your lib is still digestible.