Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions frameworks/Ruby/rack-sequel/Gemfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
source 'https://rubygems.org'

gem 'base64' # required by passenger on Ruby 3.4
gem 'json', '~> 2.0'
gem 'oj', '~> 3.14', platforms: %i[ruby mswin]
gem 'passenger', '~> 6.0', :platforms=>[:ruby, :mswin], :require=>false
gem 'puma', '~> 6.4', :require=>false
gem 'passenger', '~> 6.0', platforms: [:ruby, :mswin], require: false
gem 'puma', '~> 6.4', require: false
gem 'sequel', '~> 5.0'
gem 'rack', '~> 3.0'
gem 'unicorn', '~> 6.1', :platforms=>[:ruby, :mswin], :require=>false
gem 'unicorn', '~> 6.1', platforms: [:ruby, :mswin], require: false

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

group :postgresql do
gem 'jdbc-postgres', '~> 9.4', :platforms=>:jruby, :require=>'jdbc/postgres'
gem 'pg', '~> 1.5', :platforms=>[:ruby, :mswin]
gem 'sequel_pg', '~> 1.6', :platforms=>:ruby, :require=>false
gem 'jdbc-postgres', '~> 9.4', platforms: :jruby, require: 'jdbc/postgres'
gem 'pg', '~> 1.5', platforms: [:ruby, :mswin]
gem 'sequel_pg', '~> 1.6', platforms: :ruby, require: false
end
2 changes: 1 addition & 1 deletion frameworks/Ruby/rack-sequel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The tests will be run with:

* [Ruby 3.3](http://www.ruby-lang.org)
* [Puma 6](http://puma.io)
* [Passenger 5](https://www.phusionpassenger.com)
* [Passenger 6](https://www.phusionpassenger.com)
* [Unicorn 5](https://bogomips.org/unicorn/)
* [Rack 2](http://rack.rubyforge.org)
* [Sequel 5](http://sequel.jeremyevans.net)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4-rc

ADD ./ /rack-sequel

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4-rc

ADD ./ /rack-sequel

Expand Down
1 change: 1 addition & 0 deletions frameworks/Ruby/roda-sequel/Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source "https://rubygems.org"

gem 'base64' # required by passenger on Ruby 3.4
gem "erubi", "~> 1.12"
gem "passenger", "~> 6.0", platforms: %i[ruby mswin], require: false
gem "puma", "~> 6.2", require: false
Expand Down
2 changes: 1 addition & 1 deletion frameworks/Ruby/roda-sequel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The tests will be run with:

* [Ruby 3.3](http://www.ruby-lang.org)
* [Puma 6](http://puma.io)
* [Passenger 5](https://www.phusionpassenger.com)
* [Passenger 6](https://www.phusionpassenger.com)
* [Unicorn 5](https://bogomips.org/unicorn/)
* [Roda 3](http://roda.jeremyevans.net)
* [Sequel 5](http://sequel.jeremyevans.net)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4-rc

ADD ./ /roda-sequel
WORKDIR /roda-sequel
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4-rc

ENV RUBY_YJIT_ENABLE=1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4-rc

ENV RUBY_YJIT_ENABLE=1

Expand Down
Loading