Skip to content

Commit 9cf1acc

Browse files
committed
[chore] Correct target JRuby version
1 parent 9a7f390 commit 9cf1acc

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

examples/camping/Gemfile.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GEM
1111
rack (2.2.20)
1212
rake (13.3.0)
1313
rexml (3.4.4)
14-
rubyzip (3.2.0)
14+
rubyzip (3.2.1)
1515
warbler (2.1.0)
1616
jruby-jars (>= 9.4, < 10.1)
1717
jruby-rack (>= 1.2.3, < 1.3)
@@ -27,8 +27,9 @@ PLATFORMS
2727
DEPENDENCIES
2828
camping
2929
jruby-jars (< 10)
30+
jruby-rack
3031
rack (~> 2.2)
31-
warbler (~> 2.1)
32+
warbler
3233

3334
RUBY VERSION
3435
ruby 3.1.7p0 (jruby 9.4.14.0)

examples/rails7/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
ruby '~> 3.4.0'
3+
ruby '~> 3.1.0'
44

55
gem 'rails', '~> 7.2.0'
66
gem 'rack', '~> 2.2'
@@ -9,5 +9,5 @@ gem 'sprockets-rails'
99
group :development do
1010
if !ENV['WARBLER_SRC']; gem 'warbler' else gem 'warbler', path: '../../../warbler' end
1111
if !ENV['JRUBY_RACK_SRC']; gem 'jruby-rack' else gem 'jruby-rack', path: '../../target' end
12-
gem 'jruby-jars', '~> 10'
12+
gem 'jruby-jars', '< 10'
1313
end

examples/rails7/Gemfile.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ GEM
188188
reline (0.6.2)
189189
io-console (~> 0.5)
190190
rexml (3.4.4)
191-
rubyzip (3.2.0)
191+
rubyzip (3.2.1)
192192
securerandom (0.4.1)
193193
sprockets (4.2.2)
194194
concurrent-ruby (~> 1.0)
@@ -228,10 +228,11 @@ PLATFORMS
228228

229229
DEPENDENCIES
230230
jruby-jars (< 10)
231+
jruby-rack
231232
rack (~> 2.2)
232233
rails (~> 7.2.0)
233234
sprockets-rails
234-
warbler (~> 2.1)
235+
warbler
235236

236237
RUBY VERSION
237238
ruby 3.1.7p0 (jruby 9.4.14.0)

examples/sinatra/Gemfile.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ GEM
1414
rake (13.3.0)
1515
rexml (3.4.4)
1616
ruby2_keywords (0.0.5)
17-
rubyzip (3.2.0)
17+
rubyzip (3.2.1)
1818
sinatra (3.2.0)
1919
mustermann (~> 3.0)
2020
rack (~> 2.2, >= 2.2.4)
@@ -35,9 +35,10 @@ PLATFORMS
3535

3636
DEPENDENCIES
3737
jruby-jars (< 10)
38+
jruby-rack
3839
rack (~> 2.2)
3940
sinatra
40-
warbler (~> 2.1)
41+
warbler
4142

4243
RUBY VERSION
4344
ruby 3.1.7p0 (jruby 9.4.14.0)

0 commit comments

Comments
 (0)