gem_comet 0.6.1 → 0.7.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/.circleci/config.yml +16 -18
- data/.dependabot/config.yml +18 -0
- data/.rubocop.yml +1 -1
- data/.rubocop_challenge.yml +3 -0
- data/.rubocop_todo.yml +16 -1
- data/CHANGELOG.md +41 -0
- data/Gemfile.lock +59 -47
- data/README.md +4 -0
- data/gem_comet.gemspec +4 -2
- data/lib/gem_comet.rb +2 -2
- data/lib/gem_comet/release.rb +2 -2
- data/lib/gem_comet/release/{release_pr.rb → create_release_pr.rb} +2 -2
- data/lib/gem_comet/release/{update_pr.rb → create_update_pr.rb} +2 -2
- data/lib/gem_comet/service_abstract.rb +2 -2
- data/lib/gem_comet/version.rb +1 -1
- metadata +14 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e992b42942e26870fca6a89bcb9f315e784a55b0af467e722eb9484b8ea0a91
|
|
4
|
+
data.tar.gz: 90402f9d8725fec32adfa11f57bb6bc9681b51d504b4023c3c34e49ef504bdd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53e9e981b9f0719393f29e2c2c97e0bbcbb603d17d00f3ba231f9a7dc060c56338df04ebb3529e344ec565eb3ee118ab7d87bce03d38133226381f0b1e35fafe
|
|
7
|
+
data.tar.gz: 68c7a8357214f401e873dcc8f1c2a230184cddf088f51726fa485fa5ba51620772d728f38cea996aafff100dcdeb55fd740c818402c4b93e8c299e2db5295630
|
data/.circleci/config.yml
CHANGED
|
@@ -5,22 +5,22 @@
|
|
|
5
5
|
version: 2.1
|
|
6
6
|
|
|
7
7
|
orbs:
|
|
8
|
-
ruby-orbs: sue445/ruby-orbs@1.
|
|
8
|
+
ruby-orbs: sue445/ruby-orbs@1.6.1
|
|
9
9
|
code-climate: rvla/code-climate@0.0.2
|
|
10
10
|
|
|
11
11
|
references:
|
|
12
12
|
- &ruby_version
|
|
13
13
|
ruby_version:
|
|
14
14
|
type: enum
|
|
15
|
-
enum: ['2.
|
|
16
|
-
default: '
|
|
15
|
+
enum: ['2.7', '3.0', 'latest']
|
|
16
|
+
default: '3.0'
|
|
17
17
|
|
|
18
18
|
executors:
|
|
19
19
|
default:
|
|
20
20
|
parameters:
|
|
21
21
|
<<: *ruby_version
|
|
22
22
|
docker:
|
|
23
|
-
- image: circleci/ruby:<< parameters.ruby_version
|
|
23
|
+
- image: circleci/ruby:<< parameters.ruby_version >>
|
|
24
24
|
working_directory: ~/repo
|
|
25
25
|
|
|
26
26
|
commands:
|
|
@@ -97,6 +97,9 @@ commands:
|
|
|
97
97
|
<<: *ruby_version
|
|
98
98
|
steps:
|
|
99
99
|
- checkout
|
|
100
|
+
- run:
|
|
101
|
+
name: Install bundler v1.x for ruby 2.7
|
|
102
|
+
command: gem install bundler:1.17.3
|
|
100
103
|
- ruby-orbs/bundle-install:
|
|
101
104
|
cache_key_prefix: v1-dependencies-<< parameters.ruby_version >>
|
|
102
105
|
test_and_build:
|
|
@@ -124,7 +127,7 @@ jobs:
|
|
|
124
127
|
- code-climate/install
|
|
125
128
|
- code-climate/sum-coverage:
|
|
126
129
|
input: codeclimate.*.json
|
|
127
|
-
parts:
|
|
130
|
+
parts: 3
|
|
128
131
|
- code-climate/upload-coverage
|
|
129
132
|
rubocop:
|
|
130
133
|
executor: default
|
|
@@ -153,14 +156,11 @@ workflows:
|
|
|
153
156
|
commit:
|
|
154
157
|
jobs:
|
|
155
158
|
- build:
|
|
156
|
-
name: build_on_ruby_2.
|
|
157
|
-
ruby_version: '2.
|
|
158
|
-
- build:
|
|
159
|
-
name: build_on_ruby_2.5
|
|
160
|
-
ruby_version: '2.5'
|
|
159
|
+
name: build_on_ruby_2.7
|
|
160
|
+
ruby_version: '2.7'
|
|
161
161
|
- build:
|
|
162
|
-
name:
|
|
163
|
-
ruby_version: '
|
|
162
|
+
name: build_on_ruby_3.0
|
|
163
|
+
ruby_version: '3.0'
|
|
164
164
|
- build:
|
|
165
165
|
name: build_on_ruby_latest
|
|
166
166
|
ruby_version: 'latest'
|
|
@@ -168,16 +168,14 @@ workflows:
|
|
|
168
168
|
- yardoc
|
|
169
169
|
- upload-coverage:
|
|
170
170
|
requires:
|
|
171
|
-
- build_on_ruby_2.
|
|
172
|
-
-
|
|
173
|
-
- build_on_ruby_2.6
|
|
171
|
+
- build_on_ruby_2.7
|
|
172
|
+
- build_on_ruby_3.0
|
|
174
173
|
- build_on_ruby_latest
|
|
175
174
|
- release:
|
|
176
175
|
context: RubyGems API Key
|
|
177
176
|
requires:
|
|
178
|
-
- build_on_ruby_2.
|
|
179
|
-
-
|
|
180
|
-
- build_on_ruby_2.6
|
|
177
|
+
- build_on_ruby_2.7
|
|
178
|
+
- build_on_ruby_3.0
|
|
181
179
|
- build_on_ruby_latest
|
|
182
180
|
- rubocop
|
|
183
181
|
filters:
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
update_configs:
|
|
3
|
+
- package_manager: "ruby:bundler"
|
|
4
|
+
directory: "/"
|
|
5
|
+
update_schedule: "live"
|
|
6
|
+
default_reviewers:
|
|
7
|
+
- "ryz310"
|
|
8
|
+
default_assignees:
|
|
9
|
+
- "ryz310"
|
|
10
|
+
default_labels:
|
|
11
|
+
- "dependabot"
|
|
12
|
+
automerged_updates:
|
|
13
|
+
- match:
|
|
14
|
+
dependency_type: "development"
|
|
15
|
+
update_type: "all"
|
|
16
|
+
- match:
|
|
17
|
+
dependency_type: "production"
|
|
18
|
+
update_type: "semver:patch"
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on
|
|
3
|
+
# on 2020-12-25 23:30:51 UTC using RuboCop version 1.7.0.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
|
+
|
|
9
|
+
# Offense count: 11
|
|
10
|
+
Lint/MissingSuper:
|
|
11
|
+
Exclude:
|
|
12
|
+
- 'lib/gem_comet/bundle_updater.rb'
|
|
13
|
+
- 'lib/gem_comet/changelog.rb'
|
|
14
|
+
- 'lib/gem_comet/changelog/generator.rb'
|
|
15
|
+
- 'lib/gem_comet/changelog/initializer.rb'
|
|
16
|
+
- 'lib/gem_comet/config.rb'
|
|
17
|
+
- 'lib/gem_comet/open_github_pulls_page.rb'
|
|
18
|
+
- 'lib/gem_comet/release.rb'
|
|
19
|
+
- 'lib/gem_comet/release/create_release_pr.rb'
|
|
20
|
+
- 'lib/gem_comet/release/create_update_pr.rb'
|
|
21
|
+
- 'lib/gem_comet/repository_url.rb'
|
|
22
|
+
- 'lib/gem_comet/verify_git_condition.rb'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## v0.7.2 (Jan 04, 2021)
|
|
4
|
+
|
|
5
|
+
### Bugfix
|
|
6
|
+
|
|
7
|
+
* [#217](https://github.com/ryz310/gem_comet/pull/217) Use `**` to keyword argument for Ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
|
8
|
+
|
|
9
|
+
## v0.7.1 (Jan 04, 2021)
|
|
10
|
+
|
|
11
|
+
### Bugfix
|
|
12
|
+
|
|
13
|
+
* [#214](https://github.com/ryz310/gem_comet/pull/214) Fix dependency ([@ryz310](https://github.com/ryz310))
|
|
14
|
+
|
|
15
|
+
## v0.7.0 (Jan 04, 2021)
|
|
16
|
+
|
|
17
|
+
### Breaking Change
|
|
18
|
+
|
|
19
|
+
* [#178](https://github.com/ryz310/gem_comet/pull/178) End of support for Ruby 2.4 ([@ryz310](https://github.com/ryz310))
|
|
20
|
+
* [#211](https://github.com/ryz310/gem_comet/pull/211) Support ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
|
21
|
+
|
|
22
|
+
### Rubocop Challenger
|
|
23
|
+
|
|
24
|
+
* [#129](https://github.com/ryz310/gem_comet/pull/129) Performance/StartWith-20200523233027 ([@ryz310](https://github.com/ryz310))
|
|
25
|
+
* [#206](https://github.com/ryz310/gem_comet/pull/206) Re-generate .rubocop_todo.yml with RuboCop v1.7.0 ([@ryz310](https://github.com/ryz310))
|
|
26
|
+
|
|
27
|
+
### Dependabot
|
|
28
|
+
|
|
29
|
+
* [#74](https://github.com/ryz310/gem_comet/pull/74) Bump thor from 1.0.0 to 1.0.1 ([@ryz310](https://github.com/ryz310))
|
|
30
|
+
* [#112](https://github.com/ryz310/gem_comet/pull/112) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
|
|
31
|
+
* [#176](https://github.com/ryz310/gem_comet/pull/176) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
|
|
32
|
+
* [#200](https://github.com/ryz310/gem_comet/pull/200) ryz310/dependabot/bundler/rubocop-1.6.1 ([@ryz310](https://github.com/ryz310))
|
|
33
|
+
* [#203](https://github.com/ryz310/gem_comet/pull/203) ryz310/dependabot/bundler/rubocop-rspec-2.1.0 ([@ryz310](https://github.com/ryz310))
|
|
34
|
+
* [#204](https://github.com/ryz310/gem_comet/pull/204) ryz310/dependabot/bundler/rake-13.0.2 ([@ryz310](https://github.com/ryz310))
|
|
35
|
+
* [#207](https://github.com/ryz310/gem_comet/pull/207) ryz310/dependabot/bundler/yard-0.9.26 ([@ryz310](https://github.com/ryz310))
|
|
36
|
+
* [#210](https://github.com/ryz310/gem_comet/pull/210) ryz310/dependabot/bundler/rubocop-performance-1.9.2 ([@ryz310](https://github.com/ryz310))
|
|
37
|
+
|
|
38
|
+
### Misc
|
|
39
|
+
|
|
40
|
+
* [#71](https://github.com/ryz310/gem_comet/pull/71) Rename service classes to add verb to prefix ([@ryz310](https://github.com/ryz310))
|
|
41
|
+
* [#96](https://github.com/ryz310/gem_comet/pull/96) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
|
|
42
|
+
* [#113](https://github.com/ryz310/gem_comet/pull/113) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
|
|
43
|
+
|
|
3
44
|
## v0.6.1 (Nov 22, 2019)
|
|
4
45
|
|
|
5
46
|
### Misc
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
gem_comet (0.
|
|
5
|
-
pr_comet (~> 0.
|
|
4
|
+
gem_comet (0.7.2)
|
|
5
|
+
pr_comet (~> 0.4.0)
|
|
6
6
|
thor
|
|
7
7
|
type_struct
|
|
8
8
|
|
|
@@ -11,61 +11,73 @@ GEM
|
|
|
11
11
|
specs:
|
|
12
12
|
addressable (2.7.0)
|
|
13
13
|
public_suffix (>= 2.0.2, < 5.0)
|
|
14
|
-
ast (2.4.
|
|
15
|
-
byebug (11.
|
|
16
|
-
coderay (1.1.
|
|
17
|
-
diff-lcs (1.
|
|
18
|
-
docile (1.3.
|
|
19
|
-
faraday (
|
|
14
|
+
ast (2.4.1)
|
|
15
|
+
byebug (11.1.3)
|
|
16
|
+
coderay (1.1.3)
|
|
17
|
+
diff-lcs (1.4.4)
|
|
18
|
+
docile (1.3.4)
|
|
19
|
+
faraday (1.3.0)
|
|
20
|
+
faraday-net_http (~> 1.0)
|
|
20
21
|
multipart-post (>= 1.2, < 3)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
ruby2_keywords
|
|
23
|
+
faraday-net_http (1.0.0)
|
|
24
|
+
json (2.5.1)
|
|
25
|
+
method_source (1.0.0)
|
|
24
26
|
multipart-post (2.1.1)
|
|
25
|
-
octokit (4.
|
|
27
|
+
octokit (4.20.0)
|
|
28
|
+
faraday (>= 0.9)
|
|
26
29
|
sawyer (~> 0.8.0, >= 0.5.3)
|
|
27
|
-
parallel (1.
|
|
28
|
-
parser (
|
|
29
|
-
ast (~> 2.4.
|
|
30
|
-
pr_comet (0.
|
|
30
|
+
parallel (1.20.1)
|
|
31
|
+
parser (3.0.0.0)
|
|
32
|
+
ast (~> 2.4.1)
|
|
33
|
+
pr_comet (0.4.0)
|
|
31
34
|
octokit
|
|
32
35
|
rainbow
|
|
33
|
-
pry (0.
|
|
34
|
-
coderay (~> 1.1
|
|
35
|
-
method_source (~>
|
|
36
|
-
pry-byebug (3.
|
|
36
|
+
pry (0.13.1)
|
|
37
|
+
coderay (~> 1.1)
|
|
38
|
+
method_source (~> 1.0)
|
|
39
|
+
pry-byebug (3.9.0)
|
|
37
40
|
byebug (~> 11.0)
|
|
38
|
-
pry (~> 0.
|
|
39
|
-
public_suffix (4.0.
|
|
41
|
+
pry (~> 0.13.0)
|
|
42
|
+
public_suffix (4.0.6)
|
|
40
43
|
rainbow (3.0.0)
|
|
41
|
-
rake (13.0.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
rspec-
|
|
46
|
-
|
|
47
|
-
rspec-
|
|
48
|
-
rspec-
|
|
44
|
+
rake (13.0.3)
|
|
45
|
+
regexp_parser (2.0.3)
|
|
46
|
+
rexml (3.2.4)
|
|
47
|
+
rspec (3.10.0)
|
|
48
|
+
rspec-core (~> 3.10.0)
|
|
49
|
+
rspec-expectations (~> 3.10.0)
|
|
50
|
+
rspec-mocks (~> 3.10.0)
|
|
51
|
+
rspec-core (3.10.1)
|
|
52
|
+
rspec-support (~> 3.10.0)
|
|
53
|
+
rspec-expectations (3.10.1)
|
|
49
54
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
50
|
-
rspec-support (~> 3.
|
|
51
|
-
rspec-mocks (3.
|
|
55
|
+
rspec-support (~> 3.10.0)
|
|
56
|
+
rspec-mocks (3.10.1)
|
|
52
57
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
53
|
-
rspec-support (~> 3.
|
|
54
|
-
rspec-support (3.
|
|
58
|
+
rspec-support (~> 3.10.0)
|
|
59
|
+
rspec-support (3.10.1)
|
|
55
60
|
rspec_junit_formatter (0.4.1)
|
|
56
61
|
rspec-core (>= 2, < 4, != 2.12.0)
|
|
57
|
-
rubocop (
|
|
58
|
-
jaro_winkler (~> 1.5.1)
|
|
62
|
+
rubocop (1.7.0)
|
|
59
63
|
parallel (~> 1.10)
|
|
60
|
-
parser (>= 2.
|
|
64
|
+
parser (>= 2.7.1.5)
|
|
61
65
|
rainbow (>= 2.2.2, < 4.0)
|
|
66
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
67
|
+
rexml
|
|
68
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
|
62
69
|
ruby-progressbar (~> 1.7)
|
|
63
|
-
unicode-display_width (>= 1.4.0, <
|
|
64
|
-
rubocop-
|
|
65
|
-
|
|
66
|
-
rubocop-
|
|
67
|
-
rubocop (>= 0.
|
|
68
|
-
|
|
70
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
|
71
|
+
rubocop-ast (1.4.0)
|
|
72
|
+
parser (>= 2.7.1.5)
|
|
73
|
+
rubocop-performance (1.9.2)
|
|
74
|
+
rubocop (>= 0.90.0, < 2.0)
|
|
75
|
+
rubocop-ast (>= 0.4.0)
|
|
76
|
+
rubocop-rspec (2.1.0)
|
|
77
|
+
rubocop (~> 1.0)
|
|
78
|
+
rubocop-ast (>= 1.1.0)
|
|
79
|
+
ruby-progressbar (1.11.0)
|
|
80
|
+
ruby2_keywords (0.0.2)
|
|
69
81
|
sawyer (0.8.2)
|
|
70
82
|
addressable (>= 2.3.5)
|
|
71
83
|
faraday (> 0.8, < 2.0)
|
|
@@ -74,10 +86,10 @@ GEM
|
|
|
74
86
|
json (>= 1.8, < 3)
|
|
75
87
|
simplecov-html (~> 0.10.0)
|
|
76
88
|
simplecov-html (0.10.2)
|
|
77
|
-
thor (0.
|
|
89
|
+
thor (1.0.1)
|
|
78
90
|
type_struct (0.8.0)
|
|
79
|
-
unicode-display_width (1.
|
|
80
|
-
yard (0.9.
|
|
91
|
+
unicode-display_width (1.7.0)
|
|
92
|
+
yard (0.9.26)
|
|
81
93
|
|
|
82
94
|
PLATFORMS
|
|
83
95
|
ruby
|
|
@@ -92,7 +104,7 @@ DEPENDENCIES
|
|
|
92
104
|
rubocop
|
|
93
105
|
rubocop-performance
|
|
94
106
|
rubocop-rspec
|
|
95
|
-
simplecov
|
|
107
|
+
simplecov (= 0.17.1)
|
|
96
108
|
yard
|
|
97
109
|
|
|
98
110
|
BUNDLED WITH
|
data/README.md
CHANGED
data/gem_comet.gemspec
CHANGED
|
@@ -22,7 +22,9 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ['lib']
|
|
24
24
|
|
|
25
|
-
spec.
|
|
25
|
+
spec.required_ruby_version = '>= 2.7.0'
|
|
26
|
+
|
|
27
|
+
spec.add_runtime_dependency 'pr_comet', '~> 0.4.0'
|
|
26
28
|
spec.add_runtime_dependency 'thor'
|
|
27
29
|
spec.add_runtime_dependency 'type_struct'
|
|
28
30
|
|
|
@@ -34,6 +36,6 @@ Gem::Specification.new do |spec|
|
|
|
34
36
|
spec.add_development_dependency 'rubocop'
|
|
35
37
|
spec.add_development_dependency 'rubocop-performance'
|
|
36
38
|
spec.add_development_dependency 'rubocop-rspec'
|
|
37
|
-
spec.add_development_dependency 'simplecov'
|
|
39
|
+
spec.add_development_dependency 'simplecov', '0.17.1'
|
|
38
40
|
spec.add_development_dependency 'yard'
|
|
39
41
|
end
|
data/lib/gem_comet.rb
CHANGED
|
@@ -19,7 +19,7 @@ require 'gem_comet/changelog/generator'
|
|
|
19
19
|
require 'gem_comet/open_github_pulls_page'
|
|
20
20
|
require 'gem_comet/repository_url'
|
|
21
21
|
require 'gem_comet/release'
|
|
22
|
-
require 'gem_comet/release/
|
|
23
|
-
require 'gem_comet/release/
|
|
22
|
+
require 'gem_comet/release/create_update_pr'
|
|
23
|
+
require 'gem_comet/release/create_release_pr'
|
|
24
24
|
require 'gem_comet/verify_git_condition'
|
|
25
25
|
require 'gem_comet/cli'
|
data/lib/gem_comet/release.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module GemComet
|
|
4
4
|
class Release
|
|
5
5
|
# Creates a pull request for your gem release
|
|
6
|
-
class
|
|
6
|
+
class CreateReleasePR < ServiceAbstract
|
|
7
7
|
private
|
|
8
8
|
|
|
9
9
|
attr_reader :version, :pr_comet
|
|
@@ -27,7 +27,7 @@ module GemComet
|
|
|
27
27
|
|
|
28
28
|
def pull_request_body
|
|
29
29
|
template = File.read(template_file_path)
|
|
30
|
-
ERB.new(template,
|
|
30
|
+
ERB.new(template, trim_mode: '-').result(binding)
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
def template_file_path
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module GemComet
|
|
4
4
|
class Release
|
|
5
5
|
# Creates a pull request for release preparation
|
|
6
|
-
class
|
|
6
|
+
class CreateUpdatePR < ServiceAbstract
|
|
7
7
|
def initialize(version:, base_branch:)
|
|
8
8
|
@version = version
|
|
9
9
|
@pr_comet = PrComet.new(base: base_branch, branch: "update/v#{version}")
|
|
@@ -46,7 +46,7 @@ module GemComet
|
|
|
46
46
|
|
|
47
47
|
def pull_request_body
|
|
48
48
|
template = File.read(template_file_path)
|
|
49
|
-
ERB.new(template,
|
|
49
|
+
ERB.new(template, trim_mode: '-').result(binding)
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
def template_file_path
|
data/lib/gem_comet/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem_comet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ryz310
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pr_comet
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.4.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.4.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: thor
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -168,16 +168,16 @@ dependencies:
|
|
|
168
168
|
name: simplecov
|
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
|
170
170
|
requirements:
|
|
171
|
-
- -
|
|
171
|
+
- - '='
|
|
172
172
|
- !ruby/object:Gem::Version
|
|
173
|
-
version:
|
|
173
|
+
version: 0.17.1
|
|
174
174
|
type: :development
|
|
175
175
|
prerelease: false
|
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
|
177
177
|
requirements:
|
|
178
|
-
- -
|
|
178
|
+
- - '='
|
|
179
179
|
- !ruby/object:Gem::Version
|
|
180
|
-
version:
|
|
180
|
+
version: 0.17.1
|
|
181
181
|
- !ruby/object:Gem::Dependency
|
|
182
182
|
name: yard
|
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -201,11 +201,13 @@ extensions: []
|
|
|
201
201
|
extra_rdoc_files: []
|
|
202
202
|
files:
|
|
203
203
|
- ".circleci/config.yml"
|
|
204
|
+
- ".dependabot/config.yml"
|
|
204
205
|
- ".envrc.skeleton"
|
|
205
206
|
- ".gem_comet.yml"
|
|
206
207
|
- ".gitignore"
|
|
207
208
|
- ".rspec"
|
|
208
209
|
- ".rubocop.yml"
|
|
210
|
+
- ".rubocop_challenge.yml"
|
|
209
211
|
- ".rubocop_todo.yml"
|
|
210
212
|
- CHANGELOG.md
|
|
211
213
|
- CODE_OF_CONDUCT.md
|
|
@@ -229,8 +231,8 @@ files:
|
|
|
229
231
|
- lib/gem_comet/git_command.rb
|
|
230
232
|
- lib/gem_comet/open_github_pulls_page.rb
|
|
231
233
|
- lib/gem_comet/release.rb
|
|
232
|
-
- lib/gem_comet/release/
|
|
233
|
-
- lib/gem_comet/release/
|
|
234
|
+
- lib/gem_comet/release/create_release_pr.rb
|
|
235
|
+
- lib/gem_comet/release/create_update_pr.rb
|
|
234
236
|
- lib/gem_comet/repository_url.rb
|
|
235
237
|
- lib/gem_comet/service_abstract.rb
|
|
236
238
|
- lib/gem_comet/verify_git_condition.rb
|
|
@@ -254,14 +256,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
254
256
|
requirements:
|
|
255
257
|
- - ">="
|
|
256
258
|
- !ruby/object:Gem::Version
|
|
257
|
-
version:
|
|
259
|
+
version: 2.7.0
|
|
258
260
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
259
261
|
requirements:
|
|
260
262
|
- - ">="
|
|
261
263
|
- !ruby/object:Gem::Version
|
|
262
264
|
version: '0'
|
|
263
265
|
requirements: []
|
|
264
|
-
rubygems_version: 3.
|
|
266
|
+
rubygems_version: 3.2.3
|
|
265
267
|
signing_key:
|
|
266
268
|
specification_version: 4
|
|
267
269
|
summary: Release a gem quickly like comets
|