circleci-cli 1.0.0 → 3.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5210a33cd66ffb1d7cdf4294653d0a8b0098ad7755689ead6ff50419377937ca
4
- data.tar.gz: 16e6f04777f3046d6e0c67d3919d39713236da8a2cf9393497cf62b5310a271b
3
+ metadata.gz: 84193221832fac2cdd329cbedc96812e1bb12dc94d902bdce8ae1159eac958ce
4
+ data.tar.gz: 0d038c89097f8e76673532aac7a38419f47389c654ababced6daf50e6d91b3a5
5
5
  SHA512:
6
- metadata.gz: 6166152b480e9accfbbb5321496a14b5fa92ea5277c629d4ce96ebbd4b5bfd520a803afebe713fcba873f2945e23f75743e24671155f018f157f7e373a50860f
7
- data.tar.gz: ec1d2459890466344fc641fad40b0e1375d997ce3979d6babf5259d4227124cd6c0c4976dbcdb7007ea3cfad656bc1218508f76a12edadceecf06b553902840e
6
+ metadata.gz: 83c46bad4ba33e854dfc4ae366f202e9615d6e1b48eaa1f89897c160827115358b7b26bd0aa283a8c6a94baaa824d33a196f430941528516a23e50e8b86d48c9
7
+ data.tar.gz: 0eeb43050dc0f7802d10990efc4841136d7def707b51962e782ffcf57bbc30148fb74032c863efb836388813726b37fcb7074bcc4a95682e26a367ea3edfddd6
@@ -0,0 +1,56 @@
1
+ {
2
+ "projectName": "circleci-cli",
3
+ "projectOwner": "unhappychoice",
4
+ "repoType": "github",
5
+ "repoHost": "https://github.com",
6
+ "files": [
7
+ "README.md"
8
+ ],
9
+ "imageSize": 100,
10
+ "commit": true,
11
+ "commitConvention": "none",
12
+ "contributors": [
13
+ {
14
+ "login": "unhappychoice",
15
+ "name": "Yuji Ueki",
16
+ "avatar_url": "https://avatars3.githubusercontent.com/u/5608948?v=4",
17
+ "profile": "http://blog.unhappychoice.com",
18
+ "contributions": [
19
+ "code"
20
+ ]
21
+ },
22
+ {
23
+ "login": "mattbrictson",
24
+ "name": "Matt Brictson",
25
+ "avatar_url": "https://avatars0.githubusercontent.com/u/189693?v=4",
26
+ "profile": "https://mattbrictson.com/",
27
+ "contributions": [
28
+ "code",
29
+ "test"
30
+ ]
31
+ },
32
+ {
33
+ "login": "fzf",
34
+ "name": "Fletcher Fowler",
35
+ "avatar_url": "https://avatars0.githubusercontent.com/u/1462357?v=4",
36
+ "profile": "http://fzf.me",
37
+ "contributions": [
38
+ "bug",
39
+ "ideas",
40
+ "code"
41
+ ]
42
+ },
43
+ {
44
+ "login": "marcotc",
45
+ "name": "Marco Costa",
46
+ "avatar_url": "https://avatars3.githubusercontent.com/u/583503?v=4",
47
+ "profile": "https://datadoghq.com",
48
+ "contributions": [
49
+ "ideas",
50
+ "code"
51
+ ]
52
+ }
53
+ ],
54
+ "contributorsPerLine": 7,
55
+ "skipCi": true
56
+ }
@@ -8,9 +8,9 @@ update_bundler: &update_bundler
8
8
  bundle_install: &bundle_install
9
9
  run:
10
10
  name: bundle install
11
- command: bundle update --bundler && bundle install --path vendor/bundle --jobs 4
11
+ command: bundle install --path vendor/bundle --jobs 4
12
12
 
13
- restore_bundle_cache: &restore_bundle_cache
13
+ git statusrestore_bundle_cache: &restore_bundle_cache
14
14
  restore_cache:
15
15
  key: cache-bundler-{{ checksum "Gemfile.lock" }}
16
16
 
@@ -0,0 +1,22 @@
1
+ name: test
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby: ['2.7.x', '2.6.x', '2.5.x']
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - name: Set up Ruby
14
+ uses: actions/setup-ruby@v1
15
+ with:
16
+ ruby-version: ${{ matrix.ruby }}
17
+ - name: Install bundler
18
+ run: gem install bundler
19
+ - name: Install dependencies
20
+ run: bundle install --jobs 4
21
+ - name: Run test
22
+ run: bundle exec rspec
@@ -1,5 +1,13 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ TargetRubyVersion: 2.5
4
+
1
5
  Style/Documentation:
2
6
  Enabled: false
3
7
 
4
- Metrics/LineLength:
8
+ Layout/LineLength:
5
9
  Max: 120
10
+
11
+ Metrics/BlockLength:
12
+ Exclude:
13
+ - 'spec/**/*'
@@ -0,0 +1 @@
1
+ 2.6.3
@@ -0,0 +1,140 @@
1
+ # Change Log
2
+
3
+ ## [v2.2.0](https://github.com/unhappychoice/circleci-cli/tree/v2.2.0) (2019-09-29)
4
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v2.1.0...v2.2.0)
5
+
6
+ **Closed issues:**
7
+
8
+ - Watch specific branch [\#34](https://github.com/unhappychoice/circleci-cli/issues/34)
9
+
10
+ **Merged pull requests:**
11
+
12
+ - Branch parameter to watch command [\#38](https://github.com/unhappychoice/circleci-cli/pull/38) ([unhappychoice](https://github.com/unhappychoice))
13
+ - docs: add mattbrictson as a contributor [\#37](https://github.com/unhappychoice/circleci-cli/pull/37) ([allcontributors[bot]](https://github.com/apps/allcontributors))
14
+ - All contributors [\#36](https://github.com/unhappychoice/circleci-cli/pull/36) ([unhappychoice](https://github.com/unhappychoice))
15
+ - Handle GitHub repository names that contain '.' [\#35](https://github.com/unhappychoice/circleci-cli/pull/35) ([mattbrictson](https://github.com/mattbrictson))
16
+ - :+1: Create GitHub action config file [\#33](https://github.com/unhappychoice/circleci-cli/pull/33) ([unhappychoice](https://github.com/unhappychoice))
17
+ - Changelog [\#32](https://github.com/unhappychoice/circleci-cli/pull/32) ([unhappychoice](https://github.com/unhappychoice))
18
+ - Change light black color to white to make more readable [\#31](https://github.com/unhappychoice/circleci-cli/pull/31) ([unhappychoice](https://github.com/unhappychoice))
19
+
20
+ ## [v2.1.0](https://github.com/unhappychoice/circleci-cli/tree/v2.1.0) (2019-09-23)
21
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v2.0.0...v2.1.0)
22
+
23
+ **Closed issues:**
24
+
25
+ - Change color scheme? [\#30](https://github.com/unhappychoice/circleci-cli/issues/30)
26
+ - Watching project [\#26](https://github.com/unhappychoice/circleci-cli/issues/26)
27
+
28
+ **Merged pull requests:**
29
+
30
+ - Last failed option [\#29](https://github.com/unhappychoice/circleci-cli/pull/29) ([unhappychoice](https://github.com/unhappychoice))
31
+ - :+1: Add last option to build command [\#28](https://github.com/unhappychoice/circleci-cli/pull/28) ([unhappychoice](https://github.com/unhappychoice))
32
+
33
+ ## [v2.0.0](https://github.com/unhappychoice/circleci-cli/tree/v2.0.0) (2019-09-22)
34
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v1.0.0...v2.0.0)
35
+
36
+ **Merged pull requests:**
37
+
38
+ - Reimplement watch command to watch project [\#27](https://github.com/unhappychoice/circleci-cli/pull/27) ([unhappychoice](https://github.com/unhappychoice))
39
+
40
+ ## [v1.0.0](https://github.com/unhappychoice/circleci-cli/tree/v1.0.0) (2019-09-22)
41
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.4...v1.0.0)
42
+
43
+ **Merged pull requests:**
44
+
45
+ - Rename gem [\#25](https://github.com/unhappychoice/circleci-cli/pull/25) ([unhappychoice](https://github.com/unhappychoice))
46
+
47
+ ## [v0.6.4](https://github.com/unhappychoice/circleci-cli/tree/v0.6.4) (2019-09-22)
48
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.3...v0.6.4)
49
+
50
+ ## [v0.6.3](https://github.com/unhappychoice/circleci-cli/tree/v0.6.3) (2019-09-22)
51
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.2...v0.6.3)
52
+
53
+ **Closed issues:**
54
+
55
+ - guard [\#17](https://github.com/unhappychoice/circleci-cli/issues/17)
56
+ - rubocop [\#16](https://github.com/unhappychoice/circleci-cli/issues/16)
57
+ - rspec [\#15](https://github.com/unhappychoice/circleci-cli/issues/15)
58
+
59
+ **Merged pull requests:**
60
+
61
+ - Specs [\#24](https://github.com/unhappychoice/circleci-cli/pull/24) ([unhappychoice](https://github.com/unhappychoice))
62
+ - CircleCI [\#23](https://github.com/unhappychoice/circleci-cli/pull/23) ([unhappychoice](https://github.com/unhappychoice))
63
+ - Guard [\#22](https://github.com/unhappychoice/circleci-cli/pull/22) ([unhappychoice](https://github.com/unhappychoice))
64
+ - Rubocop [\#21](https://github.com/unhappychoice/circleci-cli/pull/21) ([unhappychoice](https://github.com/unhappychoice))
65
+ - Bump addressable from 2.6.0 to 2.7.0 [\#20](https://github.com/unhappychoice/circleci-cli/pull/20) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
66
+ - Bump public\_suffix from 3.1.1 to 4.0.1 [\#19](https://github.com/unhappychoice/circleci-cli/pull/19) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
67
+ - Bump parser from 2.6.3.0 to 2.6.4.1 [\#18](https://github.com/unhappychoice/circleci-cli/pull/18) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
68
+ - Bump rugged from 0.28.3 to 0.28.3.1 [\#14](https://github.com/unhappychoice/circleci-cli/pull/14) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
69
+ - Bump rugged from 0.28.2 to 0.28.3 [\#13](https://github.com/unhappychoice/circleci-cli/pull/13) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
70
+ - Bump rubocop from 0.73.0 to 0.74.0 [\#12](https://github.com/unhappychoice/circleci-cli/pull/12) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
71
+ - Bump rake from 12.3.2 to 12.3.3 [\#11](https://github.com/unhappychoice/circleci-cli/pull/11) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
72
+ - Update rugged requirement from ~\> 0.26.0 to \>= 0.26, \< 0.29 [\#10](https://github.com/unhappychoice/circleci-cli/pull/10) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
73
+ - Update faraday requirement from ~\> 0.14.0 to \>= 0.14, \< 0.16 [\#9](https://github.com/unhappychoice/circleci-cli/pull/9) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
74
+ - Bump rake from 12.3.0 to 12.3.2 [\#8](https://github.com/unhappychoice/circleci-cli/pull/8) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
75
+ - Bump rubocop from 0.52.1 to 0.73.0 [\#7](https://github.com/unhappychoice/circleci-cli/pull/7) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
76
+ - Bump thor from 0.20.0 to 0.20.3 [\#6](https://github.com/unhappychoice/circleci-cli/pull/6) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
77
+ - Bump rspec from 3.7.0 to 3.8.0 [\#5](https://github.com/unhappychoice/circleci-cli/pull/5) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
78
+ - Update highline requirement from ~\> 1.7.8 to \>= 1.7.8, \< 2.1.0 [\#4](https://github.com/unhappychoice/circleci-cli/pull/4) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
79
+
80
+ ## [v0.6.2](https://github.com/unhappychoice/circleci-cli/tree/v0.6.2) (2018-01-30)
81
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.1...v0.6.2)
82
+
83
+ **Merged pull requests:**
84
+
85
+ - Update dependency [\#3](https://github.com/unhappychoice/circleci-cli/pull/3) ([unhappychoice](https://github.com/unhappychoice))
86
+
87
+ ## [v0.6.1](https://github.com/unhappychoice/circleci-cli/tree/v0.6.1) (2017-08-03)
88
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.0...v0.6.1)
89
+
90
+ ## [v0.6.0](https://github.com/unhappychoice/circleci-cli/tree/v0.6.0) (2017-03-25)
91
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.5.1...v0.6.0)
92
+
93
+ ## [v0.5.1](https://github.com/unhappychoice/circleci-cli/tree/v0.5.1) (2017-03-22)
94
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.5.0...v0.5.1)
95
+
96
+ ## [v0.5.0](https://github.com/unhappychoice/circleci-cli/tree/v0.5.0) (2017-03-22)
97
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.4.1...v0.5.0)
98
+
99
+ ## [v0.4.1](https://github.com/unhappychoice/circleci-cli/tree/v0.4.1) (2017-02-11)
100
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.4.0...v0.4.1)
101
+
102
+ **Merged pull requests:**
103
+
104
+ - Fix watch command [\#2](https://github.com/unhappychoice/circleci-cli/pull/2) ([unhappychoice](https://github.com/unhappychoice))
105
+
106
+ ## [v0.4.0](https://github.com/unhappychoice/circleci-cli/tree/v0.4.0) (2017-02-11)
107
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.3.2...v0.4.0)
108
+
109
+ ## [v0.3.2](https://github.com/unhappychoice/circleci-cli/tree/v0.3.2) (2016-03-25)
110
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.3.1...v0.3.2)
111
+
112
+ ## [v0.3.1](https://github.com/unhappychoice/circleci-cli/tree/v0.3.1) (2016-03-11)
113
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.3.0...v0.3.1)
114
+
115
+ ## [v0.3.0](https://github.com/unhappychoice/circleci-cli/tree/v0.3.0) (2016-03-11)
116
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.2.1...v0.3.0)
117
+
118
+ ## [v0.2.1](https://github.com/unhappychoice/circleci-cli/tree/v0.2.1) (2016-02-24)
119
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.2.0...v0.2.1)
120
+
121
+ ## [v0.2.0](https://github.com/unhappychoice/circleci-cli/tree/v0.2.0) (2016-02-24)
122
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.3...v0.2.0)
123
+
124
+ ## [v0.1.3](https://github.com/unhappychoice/circleci-cli/tree/v0.1.3) (2016-02-24)
125
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.2...v0.1.3)
126
+
127
+ **Merged pull requests:**
128
+
129
+ - Fix regexp for find repository name [\#1](https://github.com/unhappychoice/circleci-cli/pull/1) ([unhappychoice](https://github.com/unhappychoice))
130
+
131
+ ## [v0.1.2](https://github.com/unhappychoice/circleci-cli/tree/v0.1.2) (2016-02-23)
132
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.1...v0.1.2)
133
+
134
+ ## [v0.1.1](https://github.com/unhappychoice/circleci-cli/tree/v0.1.1) (2016-02-23)
135
+ [Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.0...v0.1.1)
136
+
137
+ ## [v0.1.0](https://github.com/unhappychoice/circleci-cli/tree/v0.1.0) (2016-02-23)
138
+
139
+
140
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -1,38 +1,52 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- circleci-cli (1.0.0)
4
+ circleci-cli (3.0.0)
5
5
  circleci (~> 2.0.2)
6
- colorize (~> 0.8.1)
7
- faraday (>= 0.14, < 0.16)
6
+ faraday (>= 0.14, < 1.1)
8
7
  highline (>= 1.7.8, < 2.1.0)
9
- launchy (~> 2.4.3)
8
+ launchy (>= 2.4.3, < 2.6.0)
10
9
  pusher-client (~> 0.6.2)
11
- rugged (>= 0.26, < 0.29)
10
+ rugged (>= 0.26, < 1.1)
12
11
  terminal-notifier (~> 2.0.0)
13
12
  terminal-table (~> 1.8.0)
14
- thor (~> 0.20.0)
13
+ thor (>= 0.20, < 1.1)
15
14
 
16
15
  GEM
17
16
  remote: https://rubygems.org/
18
17
  specs:
18
+ activesupport (6.0.3.2)
19
+ concurrent-ruby (~> 1.0, >= 1.0.2)
20
+ i18n (>= 0.7, < 2)
21
+ minitest (~> 5.1)
22
+ tzinfo (~> 1.1)
23
+ zeitwerk (~> 2.2, >= 2.2.2)
19
24
  addressable (2.7.0)
20
25
  public_suffix (>= 2.0.2, < 5.0)
21
- ast (2.4.0)
22
- circleci (2.0.2)
23
- codecov (0.1.14)
26
+ ast (2.4.1)
27
+ circleci (2.0.3)
28
+ codecov (0.2.8)
24
29
  json
25
30
  simplecov
26
- url
27
- coderay (1.1.2)
28
- colorize (0.8.1)
29
- diff-lcs (1.3)
31
+ coderay (1.1.3)
32
+ concurrent-ruby (1.1.7)
33
+ diff-lcs (1.4.4)
30
34
  docile (1.3.2)
31
- faraday (0.15.4)
35
+ faraday (1.0.1)
32
36
  multipart-post (>= 1.2, < 3)
33
- ffi (1.11.1)
37
+ faraday-http-cache (2.2.0)
38
+ faraday (>= 0.8)
39
+ ffi (1.13.1)
34
40
  formatador (0.2.5)
35
- guard (2.15.1)
41
+ github_changelog_generator (1.15.2)
42
+ activesupport
43
+ faraday-http-cache
44
+ multi_json
45
+ octokit (~> 4.6)
46
+ rainbow (>= 2.2.1)
47
+ rake (>= 10.0)
48
+ retriable (~> 3.0)
49
+ guard (2.16.2)
36
50
  formatador (>= 0.2.4)
37
51
  listen (>= 2.7, < 4.0)
38
52
  lumberjack (>= 1.0.12, < 2.0)
@@ -49,73 +63,89 @@ GEM
49
63
  guard-rubocop (1.3.0)
50
64
  guard (~> 2.0)
51
65
  rubocop (~> 0.20)
52
- highline (2.0.2)
53
- jaro_winkler (1.5.3)
54
- json (2.2.0)
55
- launchy (2.4.3)
56
- addressable (~> 2.3)
57
- listen (3.1.5)
58
- rb-fsevent (~> 0.9, >= 0.9.4)
59
- rb-inotify (~> 0.9, >= 0.9.7)
60
- ruby_dep (~> 1.2)
61
- lumberjack (1.0.13)
62
- method_source (0.9.2)
66
+ highline (2.0.3)
67
+ i18n (1.8.5)
68
+ concurrent-ruby (~> 1.0)
69
+ json (2.3.1)
70
+ launchy (2.5.0)
71
+ addressable (~> 2.7)
72
+ listen (3.2.1)
73
+ rb-fsevent (~> 0.10, >= 0.10.3)
74
+ rb-inotify (~> 0.9, >= 0.9.10)
75
+ lumberjack (1.2.7)
76
+ method_source (1.0.0)
77
+ minitest (5.14.1)
78
+ multi_json (1.15.0)
63
79
  multipart-post (2.1.1)
64
80
  nenv (0.3.0)
65
81
  notiffany (0.1.3)
66
82
  nenv (~> 0.1)
67
83
  shellany (~> 0.0)
68
- parallel (1.17.0)
69
- parser (2.6.4.1)
70
- ast (~> 2.4.0)
71
- pry (0.12.2)
72
- coderay (~> 1.1.0)
73
- method_source (~> 0.9.0)
74
- public_suffix (4.0.1)
84
+ octokit (4.18.0)
85
+ faraday (>= 0.9)
86
+ sawyer (~> 0.8.0, >= 0.5.3)
87
+ parallel (1.19.2)
88
+ parser (2.7.1.4)
89
+ ast (~> 2.4.1)
90
+ pry (0.13.1)
91
+ coderay (~> 1.1)
92
+ method_source (~> 1.0)
93
+ public_suffix (4.0.5)
75
94
  pusher-client (0.6.2)
76
95
  json
77
96
  websocket (~> 1.0)
78
97
  rainbow (3.0.0)
79
- rake (12.3.3)
80
- rb-fsevent (0.10.3)
81
- rb-inotify (0.10.0)
98
+ rake (13.0.1)
99
+ rb-fsevent (0.10.4)
100
+ rb-inotify (0.10.1)
82
101
  ffi (~> 1.0)
83
- rspec (3.8.0)
84
- rspec-core (~> 3.8.0)
85
- rspec-expectations (~> 3.8.0)
86
- rspec-mocks (~> 3.8.0)
87
- rspec-core (3.8.2)
88
- rspec-support (~> 3.8.0)
89
- rspec-expectations (3.8.4)
102
+ regexp_parser (1.7.1)
103
+ retriable (3.1.2)
104
+ rexml (3.2.4)
105
+ rspec (3.9.0)
106
+ rspec-core (~> 3.9.0)
107
+ rspec-expectations (~> 3.9.0)
108
+ rspec-mocks (~> 3.9.0)
109
+ rspec-core (3.9.2)
110
+ rspec-support (~> 3.9.3)
111
+ rspec-expectations (3.9.2)
90
112
  diff-lcs (>= 1.2.0, < 2.0)
91
- rspec-support (~> 3.8.0)
92
- rspec-mocks (3.8.1)
113
+ rspec-support (~> 3.9.0)
114
+ rspec-mocks (3.9.1)
93
115
  diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.8.0)
95
- rspec-support (3.8.2)
96
- rubocop (0.74.0)
97
- jaro_winkler (~> 1.5.1)
116
+ rspec-support (~> 3.9.0)
117
+ rspec-support (3.9.3)
118
+ rubocop (0.89.1)
98
119
  parallel (~> 1.10)
99
- parser (>= 2.6)
120
+ parser (>= 2.7.1.1)
100
121
  rainbow (>= 2.2.2, < 4.0)
122
+ regexp_parser (>= 1.7)
123
+ rexml
124
+ rubocop-ast (>= 0.3.0, < 1.0)
101
125
  ruby-progressbar (~> 1.7)
102
- unicode-display_width (>= 1.4.0, < 1.7)
126
+ unicode-display_width (>= 1.4.0, < 2.0)
127
+ rubocop-ast (0.3.0)
128
+ parser (>= 2.7.1.4)
103
129
  ruby-progressbar (1.10.1)
104
- ruby_dep (1.5.0)
105
- rugged (0.28.3.1)
130
+ rugged (1.0.1)
131
+ sawyer (0.8.2)
132
+ addressable (>= 2.3.5)
133
+ faraday (> 0.8, < 2.0)
106
134
  shellany (0.0.1)
107
- simplecov (0.17.1)
135
+ simplecov (0.19.0)
108
136
  docile (~> 1.1)
109
- json (>= 1.8, < 3)
110
- simplecov-html (~> 0.10.0)
111
- simplecov-html (0.10.2)
137
+ simplecov-html (~> 0.11)
138
+ simplecov-html (0.12.2)
112
139
  terminal-notifier (2.0.0)
113
140
  terminal-table (1.8.0)
114
141
  unicode-display_width (~> 1.1, >= 1.1.1)
115
- thor (0.20.3)
116
- unicode-display_width (1.6.0)
117
- url (0.3.2)
142
+ thor (1.0.1)
143
+ thread_safe (0.3.6)
144
+ tzinfo (1.2.7)
145
+ thread_safe (~> 0.1)
146
+ unicode-display_width (1.7.0)
118
147
  websocket (1.2.8)
148
+ zeitwerk (2.4.0)
119
149
 
120
150
  PLATFORMS
121
151
  ruby
@@ -124,6 +154,7 @@ DEPENDENCIES
124
154
  bundler
125
155
  circleci-cli!
126
156
  codecov
157
+ github_changelog_generator
127
158
  guard
128
159
  guard-rspec
129
160
  guard-rubocop
@@ -133,4 +164,4 @@ DEPENDENCIES
133
164
  simplecov
134
165
 
135
166
  BUNDLED WITH
136
- 1.17.2
167
+ 2.0.2