Skip to content

Commit b7a54b7

Browse files
authored
[ruby/rails] Remove references to Agoo (#10489)
Rails is no longer tested with Agoo.
1 parent f8bb37d commit b7a54b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frameworks/Ruby/rails/app/controllers/concerns/date_header.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module DateHeader
22
extend ActiveSupport::Concern
33

44
included do
5-
if defined?(Agoo) || defined?(Falcon) || defined?(Puma)
5+
if defined?(Falcon) || defined?(Puma)
66
before_action :add_header
77
end
88
end

frameworks/Ruby/rails/config/routes.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Rails.application.routes.draw do
22
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
33

4-
JsonApp = if defined?(Falcon) || defined?(Puma) || defined?(Agoo)
4+
JsonApp = if defined?(Falcon) || defined?(Puma)
55
->(env) do
66
[200,
77
{
@@ -22,7 +22,7 @@
2222
end
2323
end
2424

25-
PlaintextApp = if defined?(Falcon) || defined?(Puma) || defined?(Agoo)
25+
PlaintextApp = if defined?(Falcon) || defined?(Puma)
2626
->(env) do
2727
[200,
2828
{

0 commit comments

Comments
 (0)