gitlabci-bundle-update-mr 1.1.3 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +1 -28
- data/.rubocop.yml +4 -1
- data/CHANGELOG.md +7 -1
- data/Gemfile +2 -5
- data/Gemfile.lock +63 -70
- data/gitlabci-bundle-update-mr.gemspec +7 -4
- data/lib/gitlabci/bundle/update/mr/version.rb +1 -1
- metadata +52 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f16bea62fc99ac5f2aa52d7cb47cdd19ae113f8ff17b0bfe8cdf09c8a3050575
|
4
|
+
data.tar.gz: 3e3bfb1b3b39c8893e2f87410925ab83e1cf814a09399ada5a24cc604a0365ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e23aaad3dc82224d0518b75cde9f234b98a8a2ac563c22b637184a9566d620cd25e838c3bb320b4104f42a203d8e4d46745b30a2f63dcbc7775384ae3e6c654
|
7
|
+
data.tar.gz: 166a9ab45ff3399bf15c762e44a9895502d956cc0ab314bd032d3cc72f59b232eaf5ce65a27e547598fdb212baa840a3647be951215a0588a805c0ff4e0136d4
|
data/.gitlab-ci.yml
CHANGED
@@ -4,7 +4,6 @@ stages:
|
|
4
4
|
|
5
5
|
include:
|
6
6
|
- local: "/gitlabci-templates/continuous_bundle_update.yml"
|
7
|
-
- template: Code-Quality.gitlab-ci.yml
|
8
7
|
|
9
8
|
continuous_bundle_update:
|
10
9
|
stage: build
|
@@ -56,34 +55,12 @@ test:
|
|
56
55
|
parallel:
|
57
56
|
matrix:
|
58
57
|
- IMAGE:
|
59
|
-
- ruby:2.5
|
60
58
|
- ruby:2.6
|
61
59
|
- ruby:2.7
|
62
60
|
- ruby:3.0
|
61
|
+
- ruby:3.1
|
63
62
|
- rubylang/ruby:master-nightly-bionic
|
64
63
|
|
65
|
-
# c.f. https://docs.gitlab.com/ee/user/project/merge_requests/code_quality.html
|
66
|
-
code_quality:
|
67
|
-
stage: build
|
68
|
-
|
69
|
-
artifacts:
|
70
|
-
paths: [gl-code-quality-report.json]
|
71
|
-
|
72
|
-
rules:
|
73
|
-
- if: '$CODE_QUALITY_DISABLED'
|
74
|
-
when: never
|
75
|
-
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
76
|
-
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
77
|
-
- if: '$CI_COMMIT_TAG'
|
78
|
-
|
79
|
-
code_quality_html:
|
80
|
-
extends: code_quality
|
81
|
-
|
82
|
-
variables:
|
83
|
-
REPORT_FORMAT: html
|
84
|
-
artifacts:
|
85
|
-
paths: [ gl-code-quality-report.html ]
|
86
|
-
|
87
64
|
pages:
|
88
65
|
extends: .default
|
89
66
|
|
@@ -91,12 +68,8 @@ pages:
|
|
91
68
|
|
92
69
|
image: ruby
|
93
70
|
|
94
|
-
dependencies:
|
95
|
-
- code_quality_html
|
96
|
-
|
97
71
|
script:
|
98
72
|
- bundle exec yard
|
99
|
-
- mv gl-code-quality-report.html public/
|
100
73
|
artifacts:
|
101
74
|
paths:
|
102
75
|
- public
|
data/.rubocop.yml
CHANGED
@@ -9,7 +9,7 @@ inherit_gem:
|
|
9
9
|
# - "config/rspec.yml"
|
10
10
|
|
11
11
|
AllCops:
|
12
|
-
TargetRubyVersion: 2.
|
12
|
+
TargetRubyVersion: 2.6
|
13
13
|
NewCops: enable
|
14
14
|
SuggestExtensions: false
|
15
15
|
|
@@ -19,3 +19,6 @@ Layout/HashAlignment:
|
|
19
19
|
|
20
20
|
Metrics/MethodLength:
|
21
21
|
Max: 22
|
22
|
+
|
23
|
+
Style/FetchEnvVar:
|
24
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## Unreleased
|
2
|
-
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/
|
2
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v2.0.0...master)
|
3
|
+
|
4
|
+
## v2.0.0
|
5
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.3...v2.0.0)
|
6
|
+
|
7
|
+
### Breaking changes :warning:
|
8
|
+
* Drop support ruby < 2.6 [!216](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/216) *@sue445*
|
3
9
|
|
4
10
|
## v1.1.3
|
5
11
|
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.2...v1.1.3)
|
data/Gemfile
CHANGED
@@ -5,10 +5,7 @@ git_source(:github) {|repo| "https://github.com/#{repo}.git" }
|
|
5
5
|
gemspec
|
6
6
|
|
7
7
|
# FIXME: following gems are often downgraded when `bundle update`
|
8
|
-
gem "faraday", ">= 0.15.4"
|
9
|
-
gem "octokit", ">= 4.13.0"
|
10
8
|
gem "sawyer", ">= 0.8.1"
|
11
9
|
|
12
|
-
#
|
13
|
-
|
14
|
-
gem "rubocop", ">= 1.22.1", "!= 1.22.2"
|
10
|
+
# octokit 5.0.0+ requires Ruby 2.7.0+
|
11
|
+
gem "octokit", "< 5.0.0"
|
data/Gemfile.lock
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gitlabci-bundle-update-mr (
|
4
|
+
gitlabci-bundle-update-mr (2.0.0)
|
5
5
|
bundler
|
6
6
|
compare_linker (>= 1.4.3)
|
7
7
|
git (= 1.7.0)
|
8
|
-
gitlab (>= 4.
|
8
|
+
gitlab (>= 4.19.0)
|
9
9
|
restore_bundled_with
|
10
10
|
|
11
11
|
GEM
|
@@ -21,34 +21,19 @@ GEM
|
|
21
21
|
octokit
|
22
22
|
crack (0.4.5)
|
23
23
|
rexml
|
24
|
-
diff-lcs (1.
|
24
|
+
diff-lcs (1.5.0)
|
25
25
|
docile (1.4.0)
|
26
26
|
dotenv (2.7.6)
|
27
|
-
faraday (
|
28
|
-
faraday-
|
29
|
-
faraday-em_synchrony (~> 1.0)
|
30
|
-
faraday-excon (~> 1.1)
|
31
|
-
faraday-httpclient (~> 1.0.1)
|
32
|
-
faraday-net_http (~> 1.0)
|
33
|
-
faraday-net_http_persistent (~> 1.1)
|
34
|
-
faraday-patron (~> 1.0)
|
35
|
-
faraday-rack (~> 1.0)
|
36
|
-
multipart-post (>= 1.2, < 3)
|
27
|
+
faraday (2.3.0)
|
28
|
+
faraday-net_http (~> 2.0)
|
37
29
|
ruby2_keywords (>= 0.0.4)
|
38
|
-
faraday-
|
39
|
-
faraday-em_synchrony (1.0.0)
|
40
|
-
faraday-excon (1.1.0)
|
41
|
-
faraday-httpclient (1.0.1)
|
42
|
-
faraday-net_http (1.0.1)
|
43
|
-
faraday-net_http_persistent (1.2.0)
|
44
|
-
faraday-patron (1.0.0)
|
45
|
-
faraday-rack (1.0.0)
|
30
|
+
faraday-net_http (2.0.3)
|
46
31
|
git (1.7.0)
|
47
32
|
rchardet (~> 1.8)
|
48
|
-
gitlab (4.
|
49
|
-
httparty (~> 0.
|
50
|
-
terminal-table (
|
51
|
-
gitlab_awesome_release (1.0.
|
33
|
+
gitlab (4.19.0)
|
34
|
+
httparty (~> 0.20)
|
35
|
+
terminal-table (>= 1.5.1)
|
36
|
+
gitlab_awesome_release (1.0.4)
|
52
37
|
dotenv
|
53
38
|
gitlab (>= 4.0.0)
|
54
39
|
thor
|
@@ -57,20 +42,20 @@ GEM
|
|
57
42
|
mime-types (~> 3.0)
|
58
43
|
multi_xml (>= 0.5.2)
|
59
44
|
httpclient (2.8.3)
|
45
|
+
json (2.6.2)
|
60
46
|
method_source (1.0.0)
|
61
47
|
mime-types (3.4.1)
|
62
48
|
mime-types-data (~> 3.2015)
|
63
|
-
mime-types-data (3.
|
49
|
+
mime-types-data (3.2022.0105)
|
64
50
|
multi_xml (0.6.0)
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
sawyer (~> 0.8.0, >= 0.5.3)
|
51
|
+
octokit (4.25.1)
|
52
|
+
faraday (>= 1, < 3)
|
53
|
+
sawyer (~> 0.9)
|
69
54
|
onkcop (1.0.0.0)
|
70
55
|
rubocop (>= 0.80.0)
|
71
56
|
rubocop-rspec (>= 1.34.0)
|
72
|
-
parallel (1.
|
73
|
-
parser (3.
|
57
|
+
parallel (1.22.1)
|
58
|
+
parser (3.1.2.0)
|
74
59
|
ast (~> 2.4.1)
|
75
60
|
pry (0.13.1)
|
76
61
|
coderay (~> 1.1)
|
@@ -78,90 +63,98 @@ GEM
|
|
78
63
|
pry-byebug (3.9.0)
|
79
64
|
byebug (~> 11.0)
|
80
65
|
pry (~> 0.13.0)
|
81
|
-
public_suffix (4.0.
|
82
|
-
rainbow (3.
|
66
|
+
public_suffix (4.0.7)
|
67
|
+
rainbow (3.1.1)
|
83
68
|
rake (13.0.6)
|
84
69
|
rchardet (1.8.0)
|
85
|
-
regexp_parser (2.
|
70
|
+
regexp_parser (2.5.0)
|
86
71
|
restore_bundled_with (1.0.0)
|
87
72
|
git
|
88
73
|
thor
|
89
74
|
rexml (3.2.5)
|
90
|
-
rspec (3.
|
91
|
-
rspec-core (~> 3.
|
92
|
-
rspec-expectations (~> 3.
|
93
|
-
rspec-mocks (~> 3.
|
94
|
-
rspec-core (3.
|
95
|
-
rspec-support (~> 3.
|
96
|
-
rspec-expectations (3.
|
75
|
+
rspec (3.11.0)
|
76
|
+
rspec-core (~> 3.11.0)
|
77
|
+
rspec-expectations (~> 3.11.0)
|
78
|
+
rspec-mocks (~> 3.11.0)
|
79
|
+
rspec-core (3.11.0)
|
80
|
+
rspec-support (~> 3.11.0)
|
81
|
+
rspec-expectations (3.11.0)
|
97
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
98
|
-
rspec-support (~> 3.
|
83
|
+
rspec-support (~> 3.11.0)
|
99
84
|
rspec-its (1.3.0)
|
100
85
|
rspec-core (>= 3.0.0)
|
101
86
|
rspec-expectations (>= 3.0.0)
|
102
|
-
rspec-mocks (3.
|
87
|
+
rspec-mocks (3.11.1)
|
103
88
|
diff-lcs (>= 1.2.0, < 2.0)
|
104
|
-
rspec-support (~> 3.
|
105
|
-
rspec-support (3.
|
106
|
-
rspec-temp_dir (1.1.
|
89
|
+
rspec-support (~> 3.11.0)
|
90
|
+
rspec-support (3.11.0)
|
91
|
+
rspec-temp_dir (1.1.1)
|
107
92
|
rspec (>= 3.0)
|
108
|
-
rubocop (1.
|
93
|
+
rubocop (1.31.2)
|
94
|
+
json (~> 2.3)
|
109
95
|
parallel (~> 1.10)
|
110
|
-
parser (>= 3.
|
96
|
+
parser (>= 3.1.0.0)
|
111
97
|
rainbow (>= 2.2.2, < 4.0)
|
112
98
|
regexp_parser (>= 1.8, < 3.0)
|
113
|
-
rexml
|
114
|
-
rubocop-ast (>= 1.
|
99
|
+
rexml (>= 3.2.5, < 4.0)
|
100
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
115
101
|
ruby-progressbar (~> 1.7)
|
116
102
|
unicode-display_width (>= 1.4.0, < 3.0)
|
117
|
-
rubocop-ast (1.
|
118
|
-
parser (>= 3.
|
119
|
-
rubocop-performance (1.
|
103
|
+
rubocop-ast (1.19.1)
|
104
|
+
parser (>= 3.1.1.0)
|
105
|
+
rubocop-performance (1.14.2)
|
120
106
|
rubocop (>= 1.7.0, < 2.0)
|
121
107
|
rubocop-ast (>= 0.4.0)
|
122
|
-
rubocop-rspec (2.
|
123
|
-
rubocop (~> 1.
|
124
|
-
rubocop_auto_corrector (0.4.
|
125
|
-
rubocop (>= 1.
|
108
|
+
rubocop-rspec (2.12.1)
|
109
|
+
rubocop (~> 1.31)
|
110
|
+
rubocop_auto_corrector (0.4.4)
|
111
|
+
rubocop (>= 1.3.0)
|
126
112
|
ruby-progressbar (1.11.0)
|
127
113
|
ruby2_keywords (0.0.5)
|
128
|
-
sawyer (0.
|
114
|
+
sawyer (0.9.2)
|
129
115
|
addressable (>= 2.3.5)
|
130
|
-
faraday (
|
116
|
+
faraday (>= 0.17.3, < 3)
|
131
117
|
simplecov (0.21.2)
|
132
118
|
docile (~> 1.1)
|
133
119
|
simplecov-html (~> 0.11)
|
134
120
|
simplecov_json_formatter (~> 0.1)
|
135
121
|
simplecov-html (0.12.3)
|
136
|
-
simplecov_json_formatter (0.1.
|
137
|
-
terminal-table (
|
138
|
-
|
139
|
-
|
122
|
+
simplecov_json_formatter (0.1.4)
|
123
|
+
terminal-table (3.0.2)
|
124
|
+
unicode-display_width (>= 1.1.1, < 3)
|
125
|
+
thor (1.2.1)
|
126
|
+
unicode-display_width (2.2.0)
|
140
127
|
webmock (3.14.0)
|
141
128
|
addressable (>= 2.8.0)
|
142
129
|
crack (>= 0.3.2)
|
143
130
|
hashdiff (>= 0.4.0, < 2.0.0)
|
144
|
-
|
131
|
+
webrick (1.7.0)
|
132
|
+
yard (0.9.28)
|
133
|
+
webrick (~> 1.7.0)
|
145
134
|
|
146
135
|
PLATFORMS
|
147
136
|
ruby
|
148
137
|
|
149
138
|
DEPENDENCIES
|
150
139
|
dotenv
|
151
|
-
faraday (>= 0.15.4)
|
152
140
|
gitlab_awesome_release
|
153
141
|
gitlabci-bundle-update-mr!
|
154
|
-
octokit (
|
142
|
+
octokit (< 5.0.0)
|
155
143
|
onkcop (>= 1.0.0.0)
|
156
144
|
pry-byebug
|
157
145
|
rake (>= 10.0)
|
158
146
|
rspec (~> 3.0)
|
159
147
|
rspec-its
|
160
148
|
rspec-temp_dir
|
161
|
-
rubocop (>= 1.
|
162
|
-
rubocop-
|
163
|
-
|
149
|
+
rubocop (>= 1.29.0)
|
150
|
+
rubocop-ast (>= 1.18.0)
|
151
|
+
rubocop-performance (>= 1.14.0)
|
152
|
+
rubocop-rspec (>= 2.11.0)
|
153
|
+
rubocop_auto_corrector (>= 0.4.4)
|
164
154
|
sawyer (>= 0.8.1)
|
165
155
|
simplecov
|
166
156
|
webmock
|
167
157
|
yard
|
158
|
+
|
159
|
+
BUNDLED WITH
|
160
|
+
2.3.7
|
@@ -35,12 +35,12 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
|
36
36
|
spec.require_paths = ["lib"]
|
37
37
|
|
38
|
-
spec.required_ruby_version = ">= 2.
|
38
|
+
spec.required_ruby_version = ">= 2.6.0"
|
39
39
|
|
40
40
|
spec.add_dependency "bundler"
|
41
41
|
spec.add_dependency "compare_linker", ">= 1.4.3"
|
42
42
|
spec.add_dependency "git", "1.7.0"
|
43
|
-
spec.add_dependency "gitlab", ">= 4.
|
43
|
+
spec.add_dependency "gitlab", ">= 4.19.0"
|
44
44
|
spec.add_dependency "restore_bundled_with"
|
45
45
|
|
46
46
|
spec.add_development_dependency "dotenv"
|
@@ -51,8 +51,11 @@ Gem::Specification.new do |spec|
|
|
51
51
|
spec.add_development_dependency "rspec", "~> 3.0"
|
52
52
|
spec.add_development_dependency "rspec-its"
|
53
53
|
spec.add_development_dependency "rspec-temp_dir"
|
54
|
-
spec.add_development_dependency "
|
55
|
-
spec.add_development_dependency "rubocop-
|
54
|
+
spec.add_development_dependency "rubocop", ">= 1.29.0"
|
55
|
+
spec.add_development_dependency "rubocop-ast", ">= 1.18.0"
|
56
|
+
spec.add_development_dependency "rubocop_auto_corrector", ">= 0.4.4"
|
57
|
+
spec.add_development_dependency "rubocop-performance", ">= 1.14.0"
|
58
|
+
spec.add_development_dependency "rubocop-rspec", ">= 2.11.0"
|
56
59
|
spec.add_development_dependency "simplecov"
|
57
60
|
spec.add_development_dependency "webmock"
|
58
61
|
spec.add_development_dependency "yard"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlabci-bundle-update-mr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 4.
|
61
|
+
version: 4.19.0
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 4.
|
68
|
+
version: 4.19.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: restore_bundled_with
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -192,34 +192,76 @@ dependencies:
|
|
192
192
|
- - ">="
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: rubocop
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: 1.29.0
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: 1.29.0
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: rubocop-ast
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: 1.18.0
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: 1.18.0
|
195
223
|
- !ruby/object:Gem::Dependency
|
196
224
|
name: rubocop_auto_corrector
|
197
225
|
requirement: !ruby/object:Gem::Requirement
|
198
226
|
requirements:
|
199
227
|
- - ">="
|
200
228
|
- !ruby/object:Gem::Version
|
201
|
-
version:
|
229
|
+
version: 0.4.4
|
202
230
|
type: :development
|
203
231
|
prerelease: false
|
204
232
|
version_requirements: !ruby/object:Gem::Requirement
|
205
233
|
requirements:
|
206
234
|
- - ">="
|
207
235
|
- !ruby/object:Gem::Version
|
208
|
-
version:
|
236
|
+
version: 0.4.4
|
209
237
|
- !ruby/object:Gem::Dependency
|
210
238
|
name: rubocop-performance
|
211
239
|
requirement: !ruby/object:Gem::Requirement
|
212
240
|
requirements:
|
213
241
|
- - ">="
|
214
242
|
- !ruby/object:Gem::Version
|
215
|
-
version:
|
243
|
+
version: 1.14.0
|
216
244
|
type: :development
|
217
245
|
prerelease: false
|
218
246
|
version_requirements: !ruby/object:Gem::Requirement
|
219
247
|
requirements:
|
220
248
|
- - ">="
|
221
249
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
250
|
+
version: 1.14.0
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: rubocop-rspec
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - ">="
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: 2.11.0
|
258
|
+
type: :development
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - ">="
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: 2.11.0
|
223
265
|
- !ruby/object:Gem::Dependency
|
224
266
|
name: simplecov
|
225
267
|
requirement: !ruby/object:Gem::Requirement
|
@@ -308,14 +350,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
308
350
|
requirements:
|
309
351
|
- - ">="
|
310
352
|
- !ruby/object:Gem::Version
|
311
|
-
version: 2.
|
353
|
+
version: 2.6.0
|
312
354
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
313
355
|
requirements:
|
314
356
|
- - ">="
|
315
357
|
- !ruby/object:Gem::Version
|
316
358
|
version: '0'
|
317
359
|
requirements: []
|
318
|
-
rubygems_version: 3.
|
360
|
+
rubygems_version: 3.3.7
|
319
361
|
signing_key:
|
320
362
|
specification_version: 4
|
321
363
|
summary: Create MergeRequest of bundle update in GitLab CI
|