Skip to content

Commit d18911f

Browse files
committed
[ruby] Update Passenger 6.0.23 and run on ruby:3.4-rc
1 parent 9613221 commit d18911f

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

frameworks/Ruby/rack-sequel/Gemfile

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

33
gem 'json', '~> 2.0'
44
gem 'oj', '~> 3.14', platforms: %i[ruby mswin]
5-
gem 'passenger', '~> 6.0', :platforms=>[:ruby, :mswin], :require=>false
6-
gem 'puma', '~> 6.4', :require=>false
5+
gem 'passenger', '~> 6.0', platforms: [:ruby, :mswin], require: false
6+
gem 'puma', '~> 6.4', require: false
77
gem 'sequel', '~> 5.0'
88
gem 'rack', '~> 3.0'
9-
gem 'unicorn', '~> 6.1', :platforms=>[:ruby, :mswin], :require=>false
9+
gem 'unicorn', '~> 6.1', platforms: [:ruby, :mswin], require: false
1010

1111
group :mysql do
12-
gem 'jdbc-mysql', '~> 5.1', :platforms=>:jruby, :require=>'jdbc/mysql'
13-
gem 'mysql2', '~> 0.5', :platforms=>[:ruby, :mswin]
12+
gem 'jdbc-mysql', '~> 5.1', platforms: :jruby, require: 'jdbc/mysql'
13+
gem 'mysql2', '~> 0.4', platforms: [:ruby, :mswin]
1414
end
1515

1616
group :postgresql do
17-
gem 'jdbc-postgres', '~> 9.4', :platforms=>:jruby, :require=>'jdbc/postgres'
18-
gem 'pg', '~> 1.5', :platforms=>[:ruby, :mswin]
19-
gem 'sequel_pg', '~> 1.6', :platforms=>:ruby, :require=>false
17+
gem 'jdbc-postgres', '~> 9.4', platforms: :jruby, require: 'jdbc/postgres'
18+
gem 'pg', '~> 1.5', platforms: [:ruby, :mswin]
19+
gem 'sequel_pg', '~> 1.6', platforms: :ruby, require: false
2020
end

frameworks/Ruby/rack-sequel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The tests will be run with:
1414

1515
* [Ruby 3.3](http://www.ruby-lang.org)
1616
* [Puma 6](http://puma.io)
17-
* [Passenger 5](https://www.phusionpassenger.com)
17+
* [Passenger 6](https://www.phusionpassenger.com)
1818
* [Unicorn 5](https://bogomips.org/unicorn/)
1919
* [Rack 2](http://rack.rubyforge.org)
2020
* [Sequel 5](http://sequel.jeremyevans.net)

frameworks/Ruby/rack-sequel/rack-sequel-passenger-mri.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3
1+
FROM ruby:3.4-rc
22

33
ADD ./ /rack-sequel
44

frameworks/Ruby/rack-sequel/rack-sequel-postgres-passenger-mri.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3
1+
FROM ruby:3.4-rc
22

33
ADD ./ /rack-sequel
44

frameworks/Ruby/roda-sequel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The tests will be run with:
1414

1515
* [Ruby 3.3](http://www.ruby-lang.org)
1616
* [Puma 6](http://puma.io)
17-
* [Passenger 5](https://www.phusionpassenger.com)
17+
* [Passenger 6](https://www.phusionpassenger.com)
1818
* [Unicorn 5](https://bogomips.org/unicorn/)
1919
* [Roda 3](http://roda.jeremyevans.net)
2020
* [Sequel 5](http://sequel.jeremyevans.net)

frameworks/Ruby/roda-sequel/roda-sequel-postgres-passenger-mri.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3
1+
FROM ruby:3.4-rc
22

33
ADD ./ /roda-sequel
44
WORKDIR /roda-sequel

frameworks/Ruby/sinatra-sequel/sinatra-sequel-postgres-passenger-mri.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3
1+
FROM ruby:3.4-rc
22

33
ENV RUBY_YJIT_ENABLE=1
44

frameworks/Ruby/sinatra/sinatra-postgres-passenger-mri.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3
1+
FROM ruby:3.4-rc
22

33
ENV RUBY_YJIT_ENABLE=1
44

0 commit comments

Comments
 (0)