gouteur 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +1 -1
- data/.rubocop.yml +9 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +37 -28
- data/lib/gouteur/checker.rb +1 -1
- data/lib/gouteur/shell.rb +1 -1
- data/lib/gouteur/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9cced511802f382d5ebaf4035fd7b06e98f0eca07e72e29c08ddae2b8de01d2f
|
|
4
|
+
data.tar.gz: 2854883c107ac874febb0e1aeb1c939d5c621bffed23feb38f22a63e1aaa0d0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34a5301cfb9d2c421079334b0426763c70aeeffcd9e1f270385979403e0506d7753d7e1eba9db1a3741b636154861fb0833c3945a6c1fe60c0bf0ecf3d5410c6
|
|
7
|
+
data.tar.gz: 066d049552256df89bede60548f584e5806cfbe4f6d0a470f23ed40d5fb8c0c1554c7f9ef6cf75c6360e7c77d21adc2ac2d4c22e15df71c94d82cb9a8811ce95
|
data/.github/workflows/build.yml
CHANGED
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
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
gouteur (1.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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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.
|
|
21
|
-
rake (13.0.
|
|
22
|
-
regexp_parser (2.0
|
|
26
|
+
rainbow (3.1.1)
|
|
27
|
+
rake (13.0.6)
|
|
28
|
+
regexp_parser (2.5.0)
|
|
23
29
|
relaxed-rubocop (2.5)
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
rspec-
|
|
29
|
-
|
|
30
|
-
rspec-
|
|
31
|
-
rspec-
|
|
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.
|
|
34
|
-
rspec-mocks (3.
|
|
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.
|
|
37
|
-
rspec-support (3.
|
|
38
|
-
rubocop (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.
|
|
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.
|
|
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.
|
|
48
|
-
parser (>=
|
|
56
|
+
rubocop-ast (1.21.0)
|
|
57
|
+
parser (>= 3.1.1.0)
|
|
49
58
|
ruby-progressbar (1.11.0)
|
|
50
|
-
unicode-display_width (2.
|
|
59
|
+
unicode-display_width (2.3.0)
|
|
51
60
|
|
|
52
61
|
PLATFORMS
|
|
53
62
|
ruby
|
|
54
63
|
|
|
55
64
|
DEPENDENCIES
|
|
56
|
-
|
|
65
|
+
debug
|
|
57
66
|
example_repo (= 0.1.0)!
|
|
58
67
|
gouteur!
|
|
59
68
|
rake (~> 13.0)
|
data/lib/gouteur/checker.rb
CHANGED
|
@@ -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
data/lib/gouteur/version.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
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.
|