gitlabci-bundle-update-mr 1.1.1.beta1 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +3 -0
- data/.gitlab-ci.yml +63 -42
- data/.rubocop.yml +1 -9
- data/CHANGELOG.md +17 -1
- data/Gemfile +3 -7
- data/Gemfile.lock +61 -52
- data/gitlabci-bundle-update-mr.gemspec +4 -2
- data/lib/gitlabci/bundle/update/mr/client.rb +4 -1
- data/lib/gitlabci/bundle/update/mr/version.rb +1 -1
- metadata +23 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f6e069d472e3b2f55ef91137eaa34be5f0b01fb6ed6034e56ac9b38892e18a9
|
4
|
+
data.tar.gz: 81880b1864a23db44575c1889f12c24156efa073c525036de84f85afce86beed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1429807a4deb0f85e6b9e18130c6ee593c35997460724efdf6c67a9df22b5de213c5db0fd9c3cc2073a61d254a7d94ed4c860527885df7ecd31907be67ee80ea
|
7
|
+
data.tar.gz: d652adce7976d1588aaa68829a8c964f2c95b2fbdb2a400a0f05e96bb326ffb6d0ca71c12835d757c8161c94ea361f069000c27a9cb147aac8c671cc5e27dec0
|
data/.codeclimate.yml
ADDED
data/.gitlab-ci.yml
CHANGED
@@ -4,6 +4,7 @@ stages:
|
|
4
4
|
|
5
5
|
include:
|
6
6
|
- local: "/gitlabci-templates/continuous_bundle_update.yml"
|
7
|
+
- template: Code-Quality.gitlab-ci.yml
|
7
8
|
|
8
9
|
continuous_bundle_update:
|
9
10
|
stage: build
|
@@ -19,10 +20,6 @@ continuous_bundle_update:
|
|
19
20
|
# Set timezone to Asia/Tokyo
|
20
21
|
- cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
|
21
22
|
|
22
|
-
only:
|
23
|
-
- schedules
|
24
|
-
- web # Test for topic branch
|
25
|
-
|
26
23
|
.default:
|
27
24
|
cache:
|
28
25
|
key: "$CI_BUILD_NAME"
|
@@ -34,55 +31,58 @@ continuous_bundle_update:
|
|
34
31
|
- bundle install --retry=3 --jobs=$(nproc)
|
35
32
|
- bundle clean
|
36
33
|
|
37
|
-
|
38
|
-
-
|
39
|
-
|
40
|
-
-
|
41
|
-
|
42
|
-
|
34
|
+
rules:
|
35
|
+
- if: '$CI_COMMIT_TAG'
|
36
|
+
when: never
|
37
|
+
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
38
|
+
when: never
|
39
|
+
- if: '$IMAGE == "rubylang/ruby:master-nightly-bionic"'
|
40
|
+
allow_failure: true
|
41
|
+
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
42
|
+
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
43
|
+
|
44
|
+
test:
|
43
45
|
extends: .default
|
44
46
|
|
45
47
|
stage: build
|
46
48
|
|
49
|
+
image: $IMAGE
|
50
|
+
|
47
51
|
script:
|
48
52
|
- bundle exec rspec
|
49
53
|
- bundle exec ./exe/gitlabci-bundle-update-mr --help
|
54
|
+
- bundle exec rubocop -P
|
50
55
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
image: ruby:2.7
|
65
|
-
|
66
|
-
test:3.0:
|
67
|
-
extends: .test
|
68
|
-
|
69
|
-
image: ruby:3.0
|
70
|
-
|
71
|
-
test:trunk:
|
72
|
-
extends: .test
|
73
|
-
|
74
|
-
image: rubylang/ruby:trunk-nightly-bionic
|
75
|
-
allow_failure: true
|
56
|
+
parallel:
|
57
|
+
matrix:
|
58
|
+
- IMAGE:
|
59
|
+
- ruby:2.5
|
60
|
+
- ruby:2.6
|
61
|
+
- ruby:2.7
|
62
|
+
- ruby:3.0
|
63
|
+
- rubylang/ruby:master-nightly-bionic
|
64
|
+
|
65
|
+
# c.f. https://docs.gitlab.com/ee/user/project/merge_requests/code_quality.html
|
66
|
+
code_quality:
|
67
|
+
stage: build
|
76
68
|
|
77
|
-
|
78
|
-
|
69
|
+
artifacts:
|
70
|
+
paths: [gl-code-quality-report.json]
|
79
71
|
|
80
|
-
|
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'
|
81
78
|
|
82
|
-
|
79
|
+
code_quality_html:
|
80
|
+
extends: code_quality
|
83
81
|
|
84
|
-
|
85
|
-
|
82
|
+
variables:
|
83
|
+
REPORT_FORMAT: html
|
84
|
+
artifacts:
|
85
|
+
paths: [ gl-code-quality-report.html ]
|
86
86
|
|
87
87
|
pages:
|
88
88
|
extends: .default
|
@@ -91,10 +91,31 @@ pages:
|
|
91
91
|
|
92
92
|
image: ruby
|
93
93
|
|
94
|
+
dependencies:
|
95
|
+
- code_quality_html
|
96
|
+
|
94
97
|
script:
|
95
98
|
- bundle exec yard
|
99
|
+
- mv gl-code-quality-report.html public/
|
96
100
|
artifacts:
|
97
101
|
paths:
|
98
102
|
- public
|
103
|
+
rules:
|
104
|
+
- if: '$CI_COMMIT_BRANCH == "master"'
|
105
|
+
|
106
|
+
gitlab_awesome_release:
|
107
|
+
stage: build
|
108
|
+
|
109
|
+
image: ruby:alpine
|
110
|
+
|
111
|
+
script:
|
112
|
+
- gem install gitlab_awesome_release --no-doc
|
113
|
+
- gitlab_awesome_release create_latest_note
|
114
|
+
|
115
|
+
variables:
|
116
|
+
GITLAB_API_ENDPOINT: $CI_API_V4_URL
|
117
|
+
GITLAB_PROJECT_NAME: $CI_PROJECT_PATH
|
118
|
+
GITLAB_API_PRIVATE_TOKEN: $GITLAB_API_PRIVATE_TOKEN
|
119
|
+
|
99
120
|
only:
|
100
|
-
-
|
121
|
+
- web
|
data/.rubocop.yml
CHANGED
@@ -11,19 +11,11 @@ inherit_gem:
|
|
11
11
|
AllCops:
|
12
12
|
TargetRubyVersion: 2.5
|
13
13
|
NewCops: enable
|
14
|
+
SuggestExtensions: false
|
14
15
|
|
15
16
|
Layout/HashAlignment:
|
16
17
|
EnforcedHashRocketStyle: table
|
17
18
|
EnforcedColonStyle: table
|
18
19
|
|
19
|
-
Layout/IndentationConsistency:
|
20
|
-
EnforcedStyle: indented_internal_methods
|
21
|
-
|
22
|
-
Layout/FirstArrayElementIndentation:
|
23
|
-
EnforcedStyle: consistent
|
24
|
-
|
25
|
-
Layout/FirstHashElementIndentation:
|
26
|
-
EnforcedStyle: consistent
|
27
|
-
|
28
20
|
Metrics/MethodLength:
|
29
21
|
Max: 22
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
## Unreleased
|
2
|
-
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.
|
2
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.3...master)
|
3
|
+
|
4
|
+
## v1.1.3
|
5
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.2...v1.1.3)
|
6
|
+
|
7
|
+
* Enable MFA requirement for gem releasing [!181](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/181) *@sue445*
|
8
|
+
|
9
|
+
## v1.1.2
|
10
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.1...v1.1.2)
|
11
|
+
|
12
|
+
* Allow auto retry with `Gitlab::Error::NotAcceptable` [!134](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/134) *@sue445*
|
13
|
+
|
14
|
+
## v1.1.1
|
15
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.0...v1.1.1)
|
16
|
+
|
17
|
+
* Add auto retry when `merge when pipeline succeeds` is failed [!128](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/128) *@sue445*
|
18
|
+
* [Resolved] `open': can't modify frozen Hash: {} (FrozenError) [!131](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/131) *@sue445*
|
3
19
|
|
4
20
|
## v1.1.0
|
5
21
|
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.0.0...v1.1.0)
|
data/Gemfile
CHANGED
@@ -9,10 +9,6 @@ gem "faraday", ">= 0.15.4"
|
|
9
9
|
gem "octokit", ">= 4.13.0"
|
10
10
|
gem "sawyer", ">= 0.8.1"
|
11
11
|
|
12
|
-
#
|
13
|
-
#
|
14
|
-
|
15
|
-
# * https://github.com/onk/onkcop/pull/65
|
16
|
-
# gem "onkcop", ">= 0.53.0.3", require: false
|
17
|
-
gem "onkcop", require: false, github: "sue445/onkcop", branch: "develop"
|
18
|
-
gem "rubocop", ">= 0.68.0"
|
12
|
+
# v1.22.2 has a false positive. This issue has been fixed but has not yet been released at this time...
|
13
|
+
# c.f. https://github.com/rubocop/rubocop/pull/10207
|
14
|
+
gem "rubocop", ">= 1.22.1", "!= 1.22.2"
|
data/Gemfile.lock
CHANGED
@@ -1,27 +1,19 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/sue445/onkcop.git
|
3
|
-
revision: d09f75a5eeb1969800cca160f653325771590fae
|
4
|
-
branch: develop
|
5
|
-
specs:
|
6
|
-
onkcop (0.53.0.3)
|
7
|
-
rubocop (>= 0.53.0)
|
8
|
-
rubocop-rspec (>= 1.34.0)
|
9
|
-
|
10
1
|
PATH
|
11
2
|
remote: .
|
12
3
|
specs:
|
13
|
-
gitlabci-bundle-update-mr (1.1.
|
4
|
+
gitlabci-bundle-update-mr (1.1.3)
|
14
5
|
bundler
|
15
6
|
compare_linker (>= 1.4.3)
|
7
|
+
git (= 1.7.0)
|
16
8
|
gitlab (>= 4.14.1)
|
17
9
|
restore_bundled_with
|
18
10
|
|
19
11
|
GEM
|
20
12
|
remote: https://rubygems.org/
|
21
13
|
specs:
|
22
|
-
addressable (2.
|
14
|
+
addressable (2.8.0)
|
23
15
|
public_suffix (>= 2.0.2, < 5.0)
|
24
|
-
ast (2.4.
|
16
|
+
ast (2.4.2)
|
25
17
|
byebug (11.1.3)
|
26
18
|
coderay (1.1.3)
|
27
19
|
compare_linker (1.4.4)
|
@@ -30,36 +22,55 @@ GEM
|
|
30
22
|
crack (0.4.5)
|
31
23
|
rexml
|
32
24
|
diff-lcs (1.4.4)
|
33
|
-
docile (1.
|
25
|
+
docile (1.4.0)
|
34
26
|
dotenv (2.7.6)
|
35
|
-
faraday (1.
|
27
|
+
faraday (1.8.0)
|
28
|
+
faraday-em_http (~> 1.0)
|
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
36
|
multipart-post (>= 1.2, < 3)
|
37
|
-
ruby2_keywords
|
37
|
+
ruby2_keywords (>= 0.0.4)
|
38
|
+
faraday-em_http (1.0.0)
|
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)
|
38
46
|
git (1.7.0)
|
39
47
|
rchardet (~> 1.8)
|
40
48
|
gitlab (4.17.0)
|
41
49
|
httparty (~> 0.18)
|
42
50
|
terminal-table (~> 1.5, >= 1.5.1)
|
43
|
-
gitlab_awesome_release (1.0.
|
51
|
+
gitlab_awesome_release (1.0.3)
|
44
52
|
dotenv
|
45
53
|
gitlab (>= 4.0.0)
|
46
54
|
thor
|
47
55
|
hashdiff (1.0.1)
|
48
|
-
httparty (0.
|
56
|
+
httparty (0.20.0)
|
49
57
|
mime-types (~> 3.0)
|
50
58
|
multi_xml (>= 0.5.2)
|
51
59
|
httpclient (2.8.3)
|
52
60
|
method_source (1.0.0)
|
53
|
-
mime-types (3.
|
61
|
+
mime-types (3.4.1)
|
54
62
|
mime-types-data (~> 3.2015)
|
55
|
-
mime-types-data (3.
|
63
|
+
mime-types-data (3.2021.1115)
|
56
64
|
multi_xml (0.6.0)
|
57
65
|
multipart-post (2.1.1)
|
58
|
-
octokit (4.
|
66
|
+
octokit (4.21.0)
|
59
67
|
faraday (>= 0.9)
|
60
68
|
sawyer (~> 0.8.0, >= 0.5.3)
|
61
|
-
|
62
|
-
|
69
|
+
onkcop (1.0.0.0)
|
70
|
+
rubocop (>= 0.80.0)
|
71
|
+
rubocop-rspec (>= 1.34.0)
|
72
|
+
parallel (1.21.0)
|
73
|
+
parser (3.0.2.0)
|
63
74
|
ast (~> 2.4.1)
|
64
75
|
pry (0.13.1)
|
65
76
|
coderay (~> 1.1)
|
@@ -69,13 +80,13 @@ GEM
|
|
69
80
|
pry (~> 0.13.0)
|
70
81
|
public_suffix (4.0.6)
|
71
82
|
rainbow (3.0.0)
|
72
|
-
rake (13.0.
|
83
|
+
rake (13.0.6)
|
73
84
|
rchardet (1.8.0)
|
74
|
-
regexp_parser (2.
|
85
|
+
regexp_parser (2.1.1)
|
75
86
|
restore_bundled_with (1.0.0)
|
76
87
|
git
|
77
88
|
thor
|
78
|
-
rexml (3.2.
|
89
|
+
rexml (3.2.5)
|
79
90
|
rspec (3.10.0)
|
80
91
|
rspec-core (~> 3.10.0)
|
81
92
|
rspec-expectations (~> 3.10.0)
|
@@ -88,48 +99,46 @@ GEM
|
|
88
99
|
rspec-its (1.3.0)
|
89
100
|
rspec-core (>= 3.0.0)
|
90
101
|
rspec-expectations (>= 3.0.0)
|
91
|
-
rspec-mocks (3.10.
|
102
|
+
rspec-mocks (3.10.2)
|
92
103
|
diff-lcs (>= 1.2.0, < 2.0)
|
93
104
|
rspec-support (~> 3.10.0)
|
94
|
-
rspec-support (3.10.
|
105
|
+
rspec-support (3.10.3)
|
95
106
|
rspec-temp_dir (1.1.0)
|
96
107
|
rspec (>= 3.0)
|
97
|
-
rubocop (1.
|
108
|
+
rubocop (1.23.0)
|
98
109
|
parallel (~> 1.10)
|
99
|
-
parser (>=
|
110
|
+
parser (>= 3.0.0.0)
|
100
111
|
rainbow (>= 2.2.2, < 4.0)
|
101
112
|
regexp_parser (>= 1.8, < 3.0)
|
102
113
|
rexml
|
103
|
-
rubocop-ast (>= 1.
|
114
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
104
115
|
ruby-progressbar (~> 1.7)
|
105
|
-
unicode-display_width (>= 1.4.0, <
|
106
|
-
rubocop-ast (1.
|
107
|
-
parser (>=
|
108
|
-
rubocop-performance (1.
|
109
|
-
rubocop (>=
|
116
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
117
|
+
rubocop-ast (1.13.0)
|
118
|
+
parser (>= 3.0.1.1)
|
119
|
+
rubocop-performance (1.12.0)
|
120
|
+
rubocop (>= 1.7.0, < 2.0)
|
110
121
|
rubocop-ast (>= 0.4.0)
|
111
|
-
rubocop-rspec (2.
|
112
|
-
rubocop (~> 1.
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
ruby2_keywords (0.0.2)
|
122
|
+
rubocop-rspec (2.6.0)
|
123
|
+
rubocop (~> 1.19)
|
124
|
+
rubocop_auto_corrector (0.4.2)
|
125
|
+
rubocop (>= 1.13.0)
|
126
|
+
ruby-progressbar (1.11.0)
|
127
|
+
ruby2_keywords (0.0.5)
|
118
128
|
sawyer (0.8.2)
|
119
129
|
addressable (>= 2.3.5)
|
120
130
|
faraday (> 0.8, < 2.0)
|
121
|
-
simplecov (0.
|
131
|
+
simplecov (0.21.2)
|
122
132
|
docile (~> 1.1)
|
123
133
|
simplecov-html (~> 0.11)
|
124
134
|
simplecov_json_formatter (~> 0.1)
|
125
135
|
simplecov-html (0.12.3)
|
126
|
-
simplecov_json_formatter (0.1.
|
127
|
-
terminal-table (1.
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
addressable (>= 2.3.6)
|
136
|
+
simplecov_json_formatter (0.1.3)
|
137
|
+
terminal-table (1.6.0)
|
138
|
+
thor (1.1.0)
|
139
|
+
unicode-display_width (2.1.0)
|
140
|
+
webmock (3.14.0)
|
141
|
+
addressable (>= 2.8.0)
|
133
142
|
crack (>= 0.3.2)
|
134
143
|
hashdiff (>= 0.4.0, < 2.0.0)
|
135
144
|
yard (0.9.26)
|
@@ -143,13 +152,13 @@ DEPENDENCIES
|
|
143
152
|
gitlab_awesome_release
|
144
153
|
gitlabci-bundle-update-mr!
|
145
154
|
octokit (>= 4.13.0)
|
146
|
-
onkcop
|
155
|
+
onkcop (>= 1.0.0.0)
|
147
156
|
pry-byebug
|
148
157
|
rake (>= 10.0)
|
149
158
|
rspec (~> 3.0)
|
150
159
|
rspec-its
|
151
160
|
rspec-temp_dir
|
152
|
-
rubocop (>=
|
161
|
+
rubocop (>= 1.22.1, != 1.22.2)
|
153
162
|
rubocop-performance
|
154
163
|
rubocop_auto_corrector
|
155
164
|
sawyer (>= 0.8.1)
|
@@ -19,9 +19,10 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
20
|
spec.metadata["source_code_uri"] = spec.homepage
|
21
21
|
spec.metadata["changelog_uri"] = "https://gitlab.com/sue445/gitlabci-bundle-update-mr/blob/master/CHANGELOG.md"
|
22
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
22
23
|
else
|
23
24
|
raise "RubyGems 2.0 or newer is required to protect against " \
|
24
|
-
|
25
|
+
"public gem pushes."
|
25
26
|
end
|
26
27
|
|
27
28
|
# Specify which files should be added to the gem when it is released.
|
@@ -38,12 +39,13 @@ Gem::Specification.new do |spec|
|
|
38
39
|
|
39
40
|
spec.add_dependency "bundler"
|
40
41
|
spec.add_dependency "compare_linker", ">= 1.4.3"
|
42
|
+
spec.add_dependency "git", "1.7.0"
|
41
43
|
spec.add_dependency "gitlab", ">= 4.14.1"
|
42
44
|
spec.add_dependency "restore_bundled_with"
|
43
45
|
|
44
46
|
spec.add_development_dependency "dotenv"
|
45
47
|
spec.add_development_dependency "gitlab_awesome_release"
|
46
|
-
spec.add_development_dependency "onkcop"
|
48
|
+
spec.add_development_dependency "onkcop", ">= 1.0.0.0"
|
47
49
|
spec.add_development_dependency "pry-byebug"
|
48
50
|
spec.add_development_dependency "rake", ">= 10.0"
|
49
51
|
spec.add_development_dependency "rspec", "~> 3.0"
|
@@ -216,13 +216,16 @@ module Gitlabci
|
|
216
216
|
retry_count ||= 0
|
217
217
|
|
218
218
|
yield
|
219
|
-
rescue Gitlab::Error::MethodNotAllowed => e
|
219
|
+
rescue Gitlab::Error::MethodNotAllowed, Gitlab::Error::NotAcceptable => e
|
220
220
|
retry_count += 1
|
221
221
|
|
222
222
|
if retry_count > MAX_RETRY_COUNT
|
223
223
|
raise e
|
224
224
|
end
|
225
225
|
|
226
|
+
puts "Error is occurred and auto retry (#{retry_count}/#{MAX_RETRY_COUNT}): #{e}"
|
227
|
+
sleep 1
|
228
|
+
|
226
229
|
retry
|
227
230
|
end
|
228
231
|
|
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: 1.1.
|
4
|
+
version: 1.1.3
|
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: 2021-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 1.4.3
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: git
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.7.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.7.0
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: gitlab
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,14 +114,14 @@ dependencies:
|
|
100
114
|
requirements:
|
101
115
|
- - ">="
|
102
116
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
117
|
+
version: 1.0.0.0
|
104
118
|
type: :development
|
105
119
|
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
107
121
|
requirements:
|
108
122
|
- - ">="
|
109
123
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
124
|
+
version: 1.0.0.0
|
111
125
|
- !ruby/object:Gem::Dependency
|
112
126
|
name: pry-byebug
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -256,6 +270,7 @@ executables:
|
|
256
270
|
extensions: []
|
257
271
|
extra_rdoc_files: []
|
258
272
|
files:
|
273
|
+
- ".codeclimate.yml"
|
259
274
|
- ".env.example"
|
260
275
|
- ".env.gitlab"
|
261
276
|
- ".gitignore"
|
@@ -284,6 +299,7 @@ metadata:
|
|
284
299
|
homepage_uri: https://gitlab.com/sue445/gitlabci-bundle-update-mr
|
285
300
|
source_code_uri: https://gitlab.com/sue445/gitlabci-bundle-update-mr
|
286
301
|
changelog_uri: https://gitlab.com/sue445/gitlabci-bundle-update-mr/blob/master/CHANGELOG.md
|
302
|
+
rubygems_mfa_required: 'true'
|
287
303
|
post_install_message:
|
288
304
|
rdoc_options: []
|
289
305
|
require_paths:
|
@@ -295,11 +311,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
295
311
|
version: 2.5.0
|
296
312
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
297
313
|
requirements:
|
298
|
-
- - "
|
314
|
+
- - ">="
|
299
315
|
- !ruby/object:Gem::Version
|
300
|
-
version:
|
316
|
+
version: '0'
|
301
317
|
requirements: []
|
302
|
-
rubygems_version: 3.
|
318
|
+
rubygems_version: 3.2.22
|
303
319
|
signing_key:
|
304
320
|
specification_version: 4
|
305
321
|
summary: Create MergeRequest of bundle update in GitLab CI
|