Skip to content

Commit c34aeca

Browse files
authored
Use rqrcode on GitHub to allow Ruby 4.0 (#430)
1 parent d617130 commit c34aeca

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

benchmarks/lobsters/Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ gem "actionpack-page_caching"
3636
# security
3737
gem "bcrypt", "~> 3.1.2"
3838
gem "rotp"
39-
gem "rqrcode"
39+
# Waiting for https://github.com/whomwah/rqrcode/pull/160 to be released
40+
gem "rqrcode", github: "whomwah/rqrcode"
41+
# Waiting for https://github.com/whomwah/rqrcode_core/pull/48 to be released
42+
gem "rqrcode_core", github: "whomwah/rqrcode_core"
4043

4144
# parsing
4245
gem "pdf-reader"

benchmarks/lobsters/Gemfile.lock

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
GIT
2+
remote: https://github.com/whomwah/rqrcode.git
3+
revision: f9fa33704951158a38b3cf04311e295d3a0e947d
4+
specs:
5+
rqrcode (3.1.0)
6+
chunky_png (~> 1.0)
7+
rqrcode_core (~> 2.0)
8+
9+
GIT
10+
remote: https://github.com/whomwah/rqrcode_core.git
11+
revision: a35eebde0f650074331206ccc7c6dc39a3fbb664
12+
specs:
13+
rqrcode_core (2.0.0)
14+
115
GEM
216
remote: https://rubygems.org/
317
specs:
@@ -229,10 +243,6 @@ GEM
229243
io-console (~> 0.5)
230244
rexml (3.4.2)
231245
rotp (6.3.0)
232-
rqrcode (3.1.0)
233-
chunky_png (~> 1.0)
234-
rqrcode_core (~> 2.0)
235-
rqrcode_core (2.0.0)
236246
rspec-core (3.13.5)
237247
rspec-support (~> 3.13.0)
238248
rspec-expectations (3.13.5)
@@ -358,7 +368,8 @@ DEPENDENCIES
358368
railties (~> 8.0)
359369
rb-readline
360370
rotp
361-
rqrcode
371+
rqrcode!
372+
rqrcode_core!
362373
rspec-rails (~> 6.0.0.rc1)
363374
rubocop (= 0.81)
364375
rubocop-rails
@@ -471,8 +482,8 @@ CHECKSUMS
471482
reline (0.6.2) sha256=1dad26a6008872d59c8e05244b119347c9f2ddaf4a53dce97856cd5f30a02846
472483
rexml (3.4.2) sha256=1384268554a37af5da5279431ca3f2f37d46f09ffdd6c95e17cc84c83ea7c417
473484
rotp (6.3.0) sha256=75d40087e65ed0d8022c33055a6306c1c400d1c12261932533b5d6cbcd868854
474-
rqrcode (3.1.0) sha256=e2d5996375f6e9a013823c289ed575dbea678b8e0388574302c1fac563f098af
475-
rqrcode_core (2.0.0) sha256=1e40b823ab57a96482a417fff5dd5c33645a00cea6ef5d9e342fecc5ef91d9ab
485+
rqrcode (3.1.0)
486+
rqrcode_core (2.0.0)
476487
rspec-core (3.13.5) sha256=ab3f682897c6131c67f9a17cfee5022a597f283aebe654d329a565f9937a4fa3
477488
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
478489
rspec-mocks (3.13.5) sha256=e4338a6f285ada9fe56f5893f5457783af8194f5d08884d17a87321d5195ea81

0 commit comments

Comments
 (0)