gem_comet 0.3.0 → 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/.gem_comet.yml +8 -0
- data/.rubocop.yml +2 -2
- data/.rubocop_challenge.yml +3 -0
- data/.rubocop_todo.yml +16 -1
- data/CHANGELOG.md +110 -14
- data/Gemfile.lock +59 -47
- data/README.md +4 -0
- data/gem_comet.gemspec +4 -2
- data/lib/gem_comet.rb +9 -2
- data/lib/gem_comet/bundle_updater.rb +14 -0
- data/lib/gem_comet/changelog.rb +7 -17
- data/lib/gem_comet/changelog/generator.rb +49 -21
- data/lib/gem_comet/changelog/initializer.rb +24 -0
- data/lib/gem_comet/cli.rb +17 -12
- data/lib/gem_comet/git_command.rb +46 -0
- data/lib/gem_comet/open_github_pulls_page.rb +18 -0
- data/lib/gem_comet/release.rb +4 -2
- data/lib/gem_comet/release/{release_pr.rb → create_release_pr.rb} +15 -2
- data/lib/gem_comet/release/{update_pr.rb → create_update_pr.rb} +15 -8
- data/lib/gem_comet/repository_url.rb +25 -0
- data/lib/gem_comet/service_abstract.rb +4 -4
- data/lib/gem_comet/verify_git_condition.rb +45 -0
- data/lib/gem_comet/version.rb +1 -1
- data/lib/gem_comet/version_history.rb +67 -0
- data/renovate.json +5 -0
- data/template/.gem_comet.yml.erb +3 -0
- data/template/release_pr.md.erb +5 -0
- data/template/update_pr.md.erb +6 -0
- metadata +24 -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/.gem_comet.yml
CHANGED
data/.rubocop.yml
CHANGED
@@ -5,7 +5,7 @@ require:
|
|
5
5
|
inherit_from: .rubocop_todo.yml
|
6
6
|
|
7
7
|
AllCops:
|
8
|
-
TargetRubyVersion: 2.
|
8
|
+
TargetRubyVersion: 2.7
|
9
9
|
|
10
10
|
Metrics/BlockLength:
|
11
11
|
Exclude:
|
@@ -16,7 +16,7 @@ Metrics/LineLength:
|
|
16
16
|
Max: 100
|
17
17
|
|
18
18
|
RSpec/MultipleExpectations:
|
19
|
-
Max:
|
19
|
+
Max: 6
|
20
20
|
|
21
21
|
RSpec/NestedGroups:
|
22
22
|
Max: 4
|
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,36 +1,132 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
##
|
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
|
+
|
44
|
+
## v0.6.1 (Nov 22, 2019)
|
45
|
+
|
46
|
+
### Misc
|
47
|
+
|
48
|
+
* [#64](https://github.com/ryz310/gem_comet/pull/64) Bump rubocop-performance from 1.5.0 to 1.5.1 ([@ryz310](https://github.com/ryz310))
|
49
|
+
* [#63](https://github.com/ryz310/gem_comet/pull/63) ryz310/dependabot/bundler/rake-13.0.1 ([@ryz310](https://github.com/ryz310))
|
50
|
+
* [#65](https://github.com/ryz310/gem_comet/pull/65) Update ruby-orbs orb to v1.4.5 ([@ryz310](https://github.com/ryz310))
|
51
|
+
|
52
|
+
## v0.6.0 (Nov 03, 2019)
|
53
|
+
|
54
|
+
### Feature
|
55
|
+
|
56
|
+
* [#60](https://github.com/ryz310/gem_comet/pull/60) Verify git condition on release ([@ryz310](https://github.com/ryz310))
|
57
|
+
|
58
|
+
## v0.5.0 (Nov 02, 2019)
|
59
|
+
|
60
|
+
### Feature
|
61
|
+
|
62
|
+
* [#48](https://github.com/ryz310/gem_comet/pull/48) Add TODO list for the release flow ([@ryz310](https://github.com/ryz310))
|
63
|
+
* [#49](https://github.com/ryz310/gem_comet/pull/49) Add pull request author names to the changelog generator feature ([@ryz310](https://github.com/ryz310))
|
64
|
+
* [#54](https://github.com/ryz310/gem_comet/pull/54) Add to todo list to check version numbering ([@ryz310](https://github.com/ryz310))
|
65
|
+
|
66
|
+
### Bugfix
|
67
|
+
|
68
|
+
* [#50](https://github.com/ryz310/gem_comet/pull/50) Fixed broken version number parsing including obsolete version numbers ([@ryz310](https://github.com/ryz310))
|
69
|
+
* [#51](https://github.com/ryz310/gem_comet/pull/51) Fix author name parsing ([@ryz310](https://github.com/ryz310))
|
70
|
+
|
71
|
+
### Misc
|
72
|
+
|
73
|
+
* [#44](https://github.com/ryz310/gem_comet/pull/44) Configure Renovate ([@ryz310](https://github.com/ryz310))
|
74
|
+
* [#46](https://github.com/ryz310/gem_comet/pull/46) Re-generate .rubocop_todo.yml with RuboCop v0.76.0 ([@ryz310](https://github.com/ryz310))
|
75
|
+
* [#47](https://github.com/ryz310/gem_comet/pull/47) Update ruby-orbs orb to v1.4.4 ([@ryz310](https://github.com/ryz310))
|
76
|
+
* [#53](https://github.com/ryz310/gem_comet/pull/53) Use pr comet stubbing ([@ryz310](https://github.com/ryz310))
|
77
|
+
|
78
|
+
## v0.4.0 (Oct 27, 2019)
|
79
|
+
|
80
|
+
### Feature
|
81
|
+
|
82
|
+
* [#32](https://github.com/ryz310/gem_comet/pull/32) Modify to display gem versions sorted by tagged date ([@ryz310](https://github.com/ryz310))
|
83
|
+
* [#33](https://github.com/ryz310/gem_comet/pull/33) Add the legend to creating pull requests ([@ryz310](https://github.com/ryz310))
|
84
|
+
* [#36](https://github.com/ryz310/gem_comet/pull/36) Open the GitHub pull request page at release ([@ryz310](https://github.com/ryz310))
|
85
|
+
|
86
|
+
### Bugfix
|
87
|
+
|
88
|
+
* [#34](https://github.com/ryz310/gem_comet/pull/34) Fix broken links included by the modified change log ([@ryz310](https://github.com/ryz310))
|
89
|
+
|
90
|
+
### Breaking Change
|
91
|
+
|
92
|
+
* [#35](https://github.com/ryz310/gem_comet/pull/35) Changelog initializer ([@ryz310](https://github.com/ryz310))
|
93
|
+
* The `$ gem_comet changelog` command options has changed:
|
94
|
+
* Before:
|
95
|
+
* `$ gem_comet changelog --from=0.1.0 --to=0.1.1`
|
96
|
+
* After:
|
97
|
+
* `$ gem_comet changelog --version=v0.1.1`
|
98
|
+
|
99
|
+
## v0.3.0 (Oct 19, 2019)
|
4
100
|
|
5
101
|
### Feature
|
6
102
|
|
7
|
-
* Enhance the feature of changelog command ([
|
103
|
+
* [#27](https://github.com/ryz310/gem_comet/pull/27) Enhance the feature of changelog command ([@ryz310](https://github.com/ryz310))
|
8
104
|
|
9
105
|
### Misc
|
10
106
|
|
11
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.75.1 ([
|
107
|
+
* [#25](https://github.com/ryz310/gem_comet/pull/25) Re-generate .rubocop_todo.yml with RuboCop v0.75.1 ([@ryz310](https://github.com/ryz310))
|
12
108
|
|
13
|
-
##
|
109
|
+
## v0.2.0 (Oct 13, 2019)
|
14
110
|
|
15
111
|
### Feature
|
16
112
|
|
17
|
-
* Auto generate change log ([
|
113
|
+
* [#22](https://github.com/ryz310/gem_comet/pull/22) Auto generate change log ([@ryz310](https://github.com/ryz310))
|
18
114
|
|
19
|
-
##
|
115
|
+
## v0.1.1 (Oct 13, 2019)
|
20
116
|
|
21
117
|
### Bugfix
|
22
118
|
|
23
|
-
* Fix version number validation ([
|
119
|
+
* [#16](https://github.com/ryz310/gem_comet/pull/16) Fix version number validation ([@ryz310](https://github.com/ryz310))
|
24
120
|
|
25
121
|
### Misc
|
26
122
|
|
27
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.73.0 ([
|
28
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.74.0 ([
|
29
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.75.0 ([
|
30
|
-
* ryz310/dependabot/bundler/rake-tw-13.0 ([
|
31
|
-
* ryz310/dependabot/bundler/rubocop-performance-1.5.0 ([
|
32
|
-
* ryz310/dependabot/bundler/rspec-3.9.0 ([
|
123
|
+
* [#3](https://github.com/ryz310/gem_comet/pull/3) Re-generate .rubocop_todo.yml with RuboCop v0.73.0 ([@ryz310](https://github.com/ryz310))
|
124
|
+
* [#5](https://github.com/ryz310/gem_comet/pull/5) Re-generate .rubocop_todo.yml with RuboCop v0.74.0 ([@ryz310](https://github.com/ryz310))
|
125
|
+
* [#13](https://github.com/ryz310/gem_comet/pull/13) Re-generate .rubocop_todo.yml with RuboCop v0.75.0 ([@ryz310](https://github.com/ryz310))
|
126
|
+
* [#9](https://github.com/ryz310/gem_comet/pull/9) ryz310/dependabot/bundler/rake-tw-13.0 ([@ryz310](https://github.com/ryz310))
|
127
|
+
* [#14](https://github.com/ryz310/gem_comet/pull/14) ryz310/dependabot/bundler/rubocop-performance-1.5.0 ([@ryz310](https://github.com/ryz310))
|
128
|
+
* [#17](https://github.com/ryz310/gem_comet/pull/17) ryz310/dependabot/bundler/rspec-3.9.0 ([@ryz310](https://github.com/ryz310))
|
33
129
|
|
34
|
-
##
|
130
|
+
## v0.1.0 (Jul 15, 2019)
|
35
131
|
|
36
132
|
Initial release :rocket:
|
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
|