bullion 0.7.3 → 0.9.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: 827d24fcfaf7bca7596c5385117d8bd5c51d23e636a562e64d3401979a08845b
4
- data.tar.gz: 01edf02e356c2b1ea2a56420a82a1f8ff1dc02a3cda56a6e19f5f2ed74b16ebb
3
+ metadata.gz: 492f8a3bde7d33dbbea336746adb4c37e479cef37f3057818090a7f1603d72db
4
+ data.tar.gz: 1bb02e31080caef0cb917ac178605f65fb33aa40f8c0790d970c3902e7990b5e
5
5
  SHA512:
6
- metadata.gz: f07630d7c8f0535a6010f236cc9b94801b6e4daa3f5787517f3a52747e7d5645d71f5fb18fe24065dba0df49f0c32d2ea784a6ad563b75dd92ba38e42fb628d8
7
- data.tar.gz: a5790c1b157d7f237fd691d319e1725ce58e824e905f7ddfe0cfcb0cb6a427560be85fa51709306f7985fcbbf08547d5a49412d71ff0d88c7d7b65144d5d9ccf
6
+ metadata.gz: 553bc8beb6536fd32b0ca0ac43ea86031747e0758c2c819f38c5e4243664091f6d3509b721d1207ac7596a1d668ba6483e57dbda3f4190d47c4260cc2bdf6ee1
7
+ data.tar.gz: a24b70400af69f84513725fdeb28a6365660509c796704dabffc9cb68e44d3288fe6b757e4bdf5d9231d45a48a04b11542ac6517c010275c49d7a9651d81f7f3
@@ -0,0 +1,54 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+
6
+ jobs:
7
+ lint:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v4
12
+
13
+ - name: Set up Ruby
14
+ uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: .ruby-version
17
+ bundler-cache: true
18
+
19
+ - name: Lint code for consistent style
20
+ run: bundle exec rubocop -f github
21
+
22
+ yard:
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - name: Checkout code
26
+ uses: actions/checkout@v4
27
+
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: .ruby-version
32
+ bundler-cache: true
33
+
34
+ - name: Generate YARD documentation
35
+ run: bundle exec rake yard
36
+
37
+ test:
38
+ runs-on: ubuntu-latest
39
+ strategy:
40
+ matrix:
41
+ ruby-version: ['3.4']
42
+
43
+ steps:
44
+ - name: Checkout code
45
+ uses: actions/checkout@v4
46
+
47
+ - name: Set up Ruby
48
+ uses: ruby/setup-ruby@v1
49
+ with:
50
+ ruby-version: ${{ matrix.ruby-version }}
51
+ bundler-cache: true
52
+
53
+ - name: Run tests
54
+ run: bundle exec rake test
@@ -0,0 +1,33 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main" ]
6
+
7
+ permissions:
8
+ contents: write
9
+ id-token: write
10
+ pull-requests: write
11
+
12
+ jobs:
13
+ release:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+
17
+ - uses: actions/checkout@v4
18
+
19
+ ## Here's the new step for release-please
20
+ - uses: googleapis/release-please-action@v4
21
+ id: release
22
+ with:
23
+ token: ${{ secrets.AUTO_RELEASE_TOKEN }}
24
+
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@v1
27
+ if: ${{ steps.release.outputs.release_created }}
28
+ with:
29
+ bundler-cache: true
30
+ ruby-version: .ruby-version
31
+
32
+ - uses: rubygems/release-gem@v1
33
+ if: ${{ steps.release.outputs.release_created }}
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.9.0"
3
+ }
data/.rubocop.yml CHANGED
@@ -1,5 +1,4 @@
1
-
2
- require:
1
+ plugins:
3
2
  - rubocop-rake
4
3
  - rubocop-rspec
5
4
 
@@ -7,10 +6,12 @@ Layout/LineLength:
7
6
  Max: 100
8
7
 
9
8
  AllCops:
9
+ TargetRubyVersion: 3.4
10
10
  Exclude:
11
11
  - 'db/schema.rb'
12
12
  - 'vendor/**/*'
13
- TargetRubyVersion: 3.2
13
+ - 'tmp/**/*'
14
+ - Itsi.rb
14
15
  NewCops: enable
15
16
 
16
17
  Metrics/AbcSize:
@@ -61,10 +62,6 @@ RSpec/NamedSubject:
61
62
  RSpec/BeforeAfterAll:
62
63
  Enabled: false
63
64
 
64
- RSpec/FilePath:
65
- Exclude:
66
- - "spec/integration/**/*_spec.rb"
67
-
68
65
  RSpec/InstanceVariable:
69
66
  Enabled: false
70
67
 
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.4
1
+ 3.4.4
data/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ ## [0.9.0](https://github.com/jgnagy/bullion/compare/bullion/v0.8.0...bullion/v0.9.0) (2025-07-05)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * full ruby and dependency upgrade
9
+
10
+ ### Miscellaneous Chores
11
+
12
+ * full ruby and dependency upgrade ([7625208](https://github.com/jgnagy/bullion/commit/7625208b1c4fa6b1acb5a0c9e7362001d66e4e08))
13
+
14
+ ## [0.8.0](https://github.com/jgnagy/bullion/compare/bullion-v0.7.3...bullion/v0.8.0) (2025-03-13)
15
+
16
+
17
+ ### ⚠ BREAKING CHANGES
18
+
19
+ * **deps:** require ruby 3.3+
20
+
21
+ ### Miscellaneous Chores
22
+
23
+ * **deps:** require ruby 3.3+ ([2cbbf69](https://github.com/jgnagy/bullion/commit/2cbbf69b0cdb024ea800d88cfc683437cdc9e5da))
data/Dockerfile CHANGED
@@ -1,10 +1,10 @@
1
- FROM ruby:3.2 AS build
1
+ FROM ruby:3.4.4 AS build
2
2
 
3
3
  ENV RACK_ENV=development
4
4
 
5
5
  COPY . /build
6
6
 
7
- RUN apt-get update && apt-get upgrade -y && apt-get install -y libsqlite3-dev sqlite3 curl libsodium-dev
7
+ RUN apt-get update && apt-get upgrade -y && apt-get install -y libsqlite3-dev sqlite3 curl libsodium-dev build-essential libclang-dev
8
8
 
9
9
  RUN cd /build \
10
10
  && gem build bullion.gemspec \
@@ -12,14 +12,14 @@ RUN cd /build \
12
12
 
13
13
  WORKDIR /build
14
14
 
15
- FROM ruby:3.2
15
+ FROM ruby:3.4.4
16
16
  LABEL maintainer="Jonathan Gnagy <jonathan.gnagy@gmail.com>"
17
17
 
18
18
  ENV BULLION_PORT=9292
19
19
  ENV BULLION_ENVIRONMENT=development
20
20
  ENV DATABASE_URL=sqlite3:///tmp/bullion.db
21
21
 
22
- RUN apt-get update && apt-get upgrade -y && apt-get -y install libsqlite3-dev sqlite3 curl libsodium-dev
22
+ RUN apt-get update && apt-get upgrade -y && apt-get -y install libsqlite3-dev sqlite3 curl libsodium-dev build-essential libclang-dev
23
23
 
24
24
  RUN mkdir /app
25
25
 
@@ -42,4 +42,6 @@ RUN gem install bullion.gem
42
42
 
43
43
  USER nobody
44
44
 
45
+ EXPOSE 9292
46
+
45
47
  ENTRYPOINT ["/entrypoint.sh"]
data/Gemfile.lock CHANGED
@@ -1,34 +1,37 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bullion (0.7.3)
4
+ bullion (0.9.0)
5
+ benchmark (~> 0.4)
5
6
  dry-configurable (~> 1.1)
6
7
  httparty (~> 0.21)
8
+ itsi (~> 0.2)
7
9
  json (~> 2.6)
8
10
  jwt (~> 2.7)
9
11
  mysql2 (~> 0.5)
10
12
  openssl (~> 3.0)
11
13
  prometheus-client (~> 4.2)
12
- puma (~> 6.4)
13
14
  sinatra (~> 3.1)
14
15
  sinatra-activerecord (~> 2.0)
15
16
  sinatra-contrib (~> 3.1)
16
- sqlite3 (~> 1.6)
17
+ sqlite3 (~> 2.7)
17
18
 
18
19
  GEM
19
20
  remote: https://rubygems.org/
20
21
  specs:
21
- acme-client (2.0.18)
22
+ acme-client (2.0.22)
23
+ base64 (~> 0.2)
22
24
  faraday (>= 1.0, < 3.0.0)
23
25
  faraday-retry (>= 1.0, < 3.0.0)
24
- activemodel (7.2.0)
25
- activesupport (= 7.2.0)
26
- activerecord (7.2.0)
27
- activemodel (= 7.2.0)
28
- activesupport (= 7.2.0)
26
+ activemodel (8.0.2)
27
+ activesupport (= 8.0.2)
28
+ activerecord (8.0.2)
29
+ activemodel (= 8.0.2)
30
+ activesupport (= 8.0.2)
29
31
  timeout (>= 0.4.0)
30
- activesupport (7.2.0)
32
+ activesupport (8.0.2)
31
33
  base64
34
+ benchmark (>= 0.3)
32
35
  bigdecimal
33
36
  concurrent-ruby (~> 1.0, >= 1.3.1)
34
37
  connection_pool (>= 2.2.5)
@@ -38,137 +41,151 @@ GEM
38
41
  minitest (>= 5.1)
39
42
  securerandom (>= 0.3)
40
43
  tzinfo (~> 2.0, >= 2.0.5)
41
- ast (2.4.2)
44
+ uri (>= 0.13.1)
45
+ ast (2.4.3)
42
46
  backport (1.2.0)
43
- base64 (0.2.0)
44
- benchmark (0.3.0)
45
- bigdecimal (3.1.8)
47
+ base64 (0.3.0)
48
+ benchmark (0.4.1)
49
+ bigdecimal (3.2.2)
46
50
  byebug (11.1.3)
47
- concurrent-ruby (1.3.4)
48
- connection_pool (2.4.1)
49
- csv (3.3.0)
50
- diff-lcs (1.5.1)
51
+ concurrent-ruby (1.3.5)
52
+ connection_pool (2.5.3)
53
+ csv (3.3.5)
54
+ diff-lcs (1.6.2)
51
55
  docile (1.4.1)
52
- drb (2.2.1)
53
- dry-configurable (1.2.0)
54
- dry-core (~> 1.0, < 2)
56
+ drb (2.2.3)
57
+ dry-configurable (1.3.0)
58
+ dry-core (~> 1.1)
55
59
  zeitwerk (~> 2.6)
56
- dry-core (1.0.1)
60
+ dry-core (1.1.0)
57
61
  concurrent-ruby (~> 1.0)
62
+ logger
58
63
  zeitwerk (~> 2.6)
59
- e2mmap (0.1.0)
60
- faraday (2.10.1)
61
- faraday-net_http (>= 2.0, < 3.2)
64
+ faraday (2.13.2)
65
+ faraday-net_http (>= 2.0, < 3.5)
66
+ json
62
67
  logger
63
- faraday-net_http (3.1.1)
64
- net-http
65
- faraday-retry (2.2.1)
68
+ faraday-net_http (3.4.1)
69
+ net-http (>= 0.5.0)
70
+ faraday-retry (2.3.2)
66
71
  faraday (~> 2.0)
67
- httparty (0.22.0)
72
+ httparty (0.23.1)
68
73
  csv
69
74
  mini_mime (>= 1.0.0)
70
75
  multi_xml (>= 0.5.2)
71
- i18n (1.14.5)
76
+ i18n (1.14.7)
72
77
  concurrent-ruby (~> 1.0)
73
- jaro_winkler (1.6.0)
74
- json (2.7.2)
75
- jwt (2.8.2)
78
+ itsi (0.2.18)
79
+ itsi-scheduler (~> 0.2.18)
80
+ itsi-server (~> 0.2.18)
81
+ itsi-scheduler (0.2.18)
82
+ rb_sys (~> 0.9.91)
83
+ itsi-server (0.2.18)
84
+ json (~> 2)
85
+ prism (~> 1.4)
86
+ rack (>= 1.6)
87
+ rb_sys (~> 0.9.91)
88
+ jaro_winkler (1.6.1)
89
+ json (2.12.2)
90
+ jwt (2.10.2)
76
91
  base64
77
- kramdown (2.4.0)
78
- rexml
92
+ kramdown (2.5.1)
93
+ rexml (>= 3.3.9)
79
94
  kramdown-parser-gfm (1.1.0)
80
95
  kramdown (~> 2.0)
81
- language_server-protocol (3.17.0.3)
82
- logger (1.6.0)
96
+ language_server-protocol (3.17.0.5)
97
+ lint_roller (1.1.0)
98
+ logger (1.7.0)
83
99
  mini_mime (1.1.5)
84
- minitest (5.25.0)
100
+ minitest (5.25.5)
85
101
  multi_json (1.15.0)
86
- multi_xml (0.7.1)
102
+ multi_xml (0.7.2)
87
103
  bigdecimal (~> 3.1)
88
- mustermann (3.0.2)
104
+ mustermann (3.0.3)
89
105
  ruby2_keywords (~> 0.0.1)
90
106
  mysql2 (0.5.6)
91
- net-http (0.4.1)
107
+ net-http (0.6.0)
92
108
  uri
93
- nio4r (2.7.3)
94
- nokogiri (1.16.7-aarch64-linux)
109
+ nokogiri (1.18.8-aarch64-linux-gnu)
110
+ racc (~> 1.4)
111
+ nokogiri (1.18.8-aarch64-linux-musl)
95
112
  racc (~> 1.4)
96
- nokogiri (1.16.7-arm-linux)
113
+ nokogiri (1.18.8-arm-linux-gnu)
97
114
  racc (~> 1.4)
98
- nokogiri (1.16.7-arm64-darwin)
115
+ nokogiri (1.18.8-arm-linux-musl)
99
116
  racc (~> 1.4)
100
- nokogiri (1.16.7-x86-linux)
117
+ nokogiri (1.18.8-arm64-darwin)
101
118
  racc (~> 1.4)
102
- nokogiri (1.16.7-x86_64-darwin)
119
+ nokogiri (1.18.8-x86_64-darwin)
103
120
  racc (~> 1.4)
104
- nokogiri (1.16.7-x86_64-linux)
121
+ nokogiri (1.18.8-x86_64-linux-gnu)
105
122
  racc (~> 1.4)
106
- openssl (3.2.0)
107
- parallel (1.26.2)
108
- parser (3.3.4.2)
123
+ nokogiri (1.18.8-x86_64-linux-musl)
124
+ racc (~> 1.4)
125
+ observer (0.1.2)
126
+ openssl (3.3.0)
127
+ ostruct (0.6.2)
128
+ parallel (1.27.0)
129
+ parser (3.3.8.0)
109
130
  ast (~> 2.4.1)
110
131
  racc
111
- prometheus-client (4.2.3)
132
+ prism (1.4.0)
133
+ prometheus-client (4.2.4)
112
134
  base64
113
- puma (6.4.2)
114
- nio4r (~> 2.0)
115
135
  racc (1.8.1)
116
- rack (2.2.9)
136
+ rack (2.2.17)
117
137
  rack-protection (3.2.0)
118
138
  base64 (>= 0.1.0)
119
139
  rack (~> 2.2, >= 2.2.4)
120
- rack-test (2.1.0)
140
+ rack-test (2.2.0)
121
141
  rack (>= 1.3)
122
142
  rainbow (3.1.1)
123
- rake (13.2.1)
124
- rbs (2.8.4)
125
- regexp_parser (2.9.2)
126
- reverse_markdown (2.1.1)
143
+ rake (13.3.0)
144
+ rake-compiler-dock (1.9.1)
145
+ rb_sys (0.9.116)
146
+ rake-compiler-dock (= 1.9.1)
147
+ rbs (3.9.4)
148
+ logger
149
+ regexp_parser (2.10.0)
150
+ reverse_markdown (3.0.0)
127
151
  nokogiri
128
- rexml (3.3.5)
129
- strscan
130
- rspec (3.13.0)
152
+ rexml (3.4.1)
153
+ rspec (3.13.1)
131
154
  rspec-core (~> 3.13.0)
132
155
  rspec-expectations (~> 3.13.0)
133
156
  rspec-mocks (~> 3.13.0)
134
- rspec-core (3.13.0)
157
+ rspec-core (3.13.5)
135
158
  rspec-support (~> 3.13.0)
136
- rspec-expectations (3.13.1)
159
+ rspec-expectations (3.13.5)
137
160
  diff-lcs (>= 1.2.0, < 2.0)
138
161
  rspec-support (~> 3.13.0)
139
- rspec-mocks (3.13.1)
162
+ rspec-mocks (3.13.5)
140
163
  diff-lcs (>= 1.2.0, < 2.0)
141
164
  rspec-support (~> 3.13.0)
142
- rspec-support (3.13.1)
143
- rubocop (1.65.1)
165
+ rspec-support (3.13.4)
166
+ rubocop (1.77.0)
144
167
  json (~> 2.3)
145
- language_server-protocol (>= 3.17.0)
168
+ language_server-protocol (~> 3.17.0.2)
169
+ lint_roller (~> 1.1.0)
146
170
  parallel (~> 1.10)
147
171
  parser (>= 3.3.0.2)
148
172
  rainbow (>= 2.2.2, < 4.0)
149
- regexp_parser (>= 2.4, < 3.0)
150
- rexml (>= 3.2.5, < 4.0)
151
- rubocop-ast (>= 1.31.1, < 2.0)
173
+ regexp_parser (>= 2.9.3, < 3.0)
174
+ rubocop-ast (>= 1.45.1, < 2.0)
152
175
  ruby-progressbar (~> 1.7)
153
- unicode-display_width (>= 2.4.0, < 3.0)
154
- rubocop-ast (1.32.0)
155
- parser (>= 3.3.1.0)
156
- rubocop-capybara (2.21.0)
157
- rubocop (~> 1.41)
158
- rubocop-factory_bot (2.26.1)
159
- rubocop (~> 1.61)
160
- rubocop-rake (0.6.0)
161
- rubocop (~> 1.0)
162
- rubocop-rspec (2.31.0)
163
- rubocop (~> 1.40)
164
- rubocop-capybara (~> 2.17)
165
- rubocop-factory_bot (~> 2.22)
166
- rubocop-rspec_rails (~> 2.28)
167
- rubocop-rspec_rails (2.29.1)
168
- rubocop (~> 1.61)
176
+ unicode-display_width (>= 2.4.0, < 4.0)
177
+ rubocop-ast (1.45.1)
178
+ parser (>= 3.3.7.2)
179
+ prism (~> 1.4)
180
+ rubocop-rake (0.7.1)
181
+ lint_roller (~> 1.1)
182
+ rubocop (>= 1.72.1)
183
+ rubocop-rspec (3.6.0)
184
+ lint_roller (~> 1.1)
185
+ rubocop (~> 1.72, >= 1.72.1)
169
186
  ruby-progressbar (1.13.0)
170
187
  ruby2_keywords (0.0.5)
171
- securerandom (0.3.1)
188
+ securerandom (0.4.1)
172
189
  simplecov (0.22.0)
173
190
  docile (~> 1.1)
174
191
  simplecov-html (~> 0.11)
@@ -176,14 +193,14 @@ GEM
176
193
  simplecov-cobertura (2.1.0)
177
194
  rexml
178
195
  simplecov (~> 0.19)
179
- simplecov-html (0.12.3)
196
+ simplecov-html (0.13.1)
180
197
  simplecov_json_formatter (0.1.4)
181
198
  sinatra (3.2.0)
182
199
  mustermann (~> 3.0)
183
200
  rack (~> 2.2, >= 2.2.4)
184
201
  rack-protection (= 3.2.0)
185
202
  tilt (~> 2.0)
186
- sinatra-activerecord (2.0.27)
203
+ sinatra-activerecord (2.0.28)
187
204
  activerecord (>= 4.1)
188
205
  sinatra (>= 1.0)
189
206
  sinatra-contrib (3.2.0)
@@ -192,46 +209,60 @@ GEM
192
209
  rack-protection (= 3.2.0)
193
210
  sinatra (= 3.2.0)
194
211
  tilt (~> 2.0)
195
- solargraph (0.50.0)
212
+ solargraph (0.56.0)
196
213
  backport (~> 1.2)
197
- benchmark
214
+ benchmark (~> 0.4)
198
215
  bundler (~> 2.0)
199
216
  diff-lcs (~> 1.4)
200
- e2mmap
201
- jaro_winkler (~> 1.5)
217
+ jaro_winkler (~> 1.6, >= 1.6.1)
202
218
  kramdown (~> 2.3)
203
219
  kramdown-parser-gfm (~> 1.1)
220
+ logger (~> 1.6)
221
+ observer (~> 0.1)
222
+ ostruct (~> 0.6)
204
223
  parser (~> 3.0)
205
- rbs (~> 2.0)
206
- reverse_markdown (~> 2.0)
224
+ prism (~> 1.4)
225
+ rbs (~> 3.3)
226
+ reverse_markdown (~> 3.0)
207
227
  rubocop (~> 1.38)
208
228
  thor (~> 1.0)
209
229
  tilt (~> 2.0)
210
230
  yard (~> 0.9, >= 0.9.24)
211
- sqlite3 (1.7.3-aarch64-linux)
212
- sqlite3 (1.7.3-arm-linux)
213
- sqlite3 (1.7.3-arm64-darwin)
214
- sqlite3 (1.7.3-x86-linux)
215
- sqlite3 (1.7.3-x86_64-darwin)
216
- sqlite3 (1.7.3-x86_64-linux)
217
- strscan (3.1.0)
218
- thor (1.3.1)
219
- tilt (2.4.0)
220
- timeout (0.4.1)
231
+ yard-solargraph (~> 0.1)
232
+ sqlite3 (2.7.1-aarch64-linux-gnu)
233
+ sqlite3 (2.7.1-aarch64-linux-musl)
234
+ sqlite3 (2.7.1-arm-linux-gnu)
235
+ sqlite3 (2.7.1-arm-linux-musl)
236
+ sqlite3 (2.7.1-arm64-darwin)
237
+ sqlite3 (2.7.1-x86_64-darwin)
238
+ sqlite3 (2.7.1-x86_64-linux-gnu)
239
+ sqlite3 (2.7.1-x86_64-linux-musl)
240
+ thor (1.3.2)
241
+ tilt (2.6.0)
242
+ timeout (0.4.3)
221
243
  tzinfo (2.0.6)
222
244
  concurrent-ruby (~> 1.0)
223
- unicode-display_width (2.5.0)
224
- uri (0.13.0)
225
- yard (0.9.36)
226
- zeitwerk (2.6.17)
245
+ unicode-display_width (3.1.4)
246
+ unicode-emoji (~> 4.0, >= 4.0.4)
247
+ unicode-emoji (4.0.4)
248
+ uri (1.0.3)
249
+ yard (0.9.37)
250
+ yard-solargraph (0.1.0)
251
+ yard (~> 0.9)
252
+ zeitwerk (2.7.3)
227
253
 
228
254
  PLATFORMS
229
255
  aarch64-linux
256
+ aarch64-linux-gnu
257
+ aarch64-linux-musl
230
258
  arm-linux
259
+ arm-linux-gnu
260
+ arm-linux-musl
231
261
  arm64-darwin
232
- x86-linux
233
262
  x86_64-darwin
234
263
  x86_64-linux
264
+ x86_64-linux-gnu
265
+ x86_64-linux-musl
235
266
 
236
267
  DEPENDENCIES
237
268
  acme-client (~> 2.0)
@@ -243,11 +274,11 @@ DEPENDENCIES
243
274
  rspec (~> 3.12)
244
275
  rubocop (~> 1.57)
245
276
  rubocop-rake (~> 0.6)
246
- rubocop-rspec (~> 2.25)
277
+ rubocop-rspec (~> 3.5)
247
278
  simplecov (~> 0.22)
248
279
  simplecov-cobertura (~> 2.1)
249
280
  solargraph (~> 0.49)
250
281
  yard (~> 0.9)
251
282
 
252
283
  BUNDLED WITH
253
- 2.5.11
284
+ 2.6.2