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
2 changes: 1 addition & 1 deletion frameworks/Ruby/grape/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ gem 'mysql2', '0.5.6'
gem 'unicorn', '6.1.0'
gem 'puma', '~> 6.4'
gem 'activerecord', '~> 7.1.0', :require => 'active_record'
gem 'grape', '2.0.0'
gem 'grape', '2.1.1'
gem 'multi_json', require: 'multi_json'
gem 'oj', '~> 3.16'
2 changes: 1 addition & 1 deletion frameworks/Ruby/grape/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ comparing a variety of web servers.
## Infrastructure Software Versions
The tests were run with:

* [Ruby 3.3](http://www.ruby-lang.org/)
* [Ruby 3.4](http://www.ruby-lang.org/)
* [Grape 2.0.0](http://www.ruby-grape.org/)
* [Unicorn 6.1.0](https://yhbt.net/unicorn/)
* [Puma 6.4](https://puma.io/)
Expand Down
2 changes: 1 addition & 1 deletion frameworks/Ruby/grape/config.ru
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module Acme

class API < Grape::API
before do
header 'Date', Time.now.httpdate
header 'Date', Time.now.httpdate if defined?(Puma)
header 'Server', 'WebServer'
end
content_type :json, 'application/json'
Expand Down
2 changes: 1 addition & 1 deletion frameworks/Ruby/grape/grape-unicorn.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4

ENV RUBY_YJIT_ENABLE=1

Expand Down
2 changes: 1 addition & 1 deletion frameworks/Ruby/grape/grape.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3
FROM ruby:3.4

ENV RUBY_YJIT_ENABLE=1

Expand Down
Loading