File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 9999 gemfile : " gems/pitchfork-head-rack-v2.rb"
100100 server : " pitchfork -E none"
101101 endpoint : " http://localhost:8080"
102+ - ruby : " 3.3"
103+ name : " Pitchfork-head-Rack-v3-http"
104+ gemfile : " gems/pitchfork-head-rack-v3.rb"
105+ server : " pitchfork -E none"
106+ endpoint : " http://localhost:8080"
102107
103108 steps :
104109 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ # Released under the MIT License.
4+ # Copyright, 2024, by Samuel Williams.
5+
6+ eval_gemfile '../gems.rb'
7+
8+ gem "pitchfork" , git : "https://github.com/Shopify/pitchfork.git"
9+ gem "rack" , "~> 3.0"
10+
11+ # export RACK_CONFORM_SERVER="pitchfork -E none"
12+ # export RACK_CONFORM_ENDPOINT="http://localhost:8080"
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ def test_websocket_echo(env)
104104 connection . write ( message )
105105 end
106106 connection . close
107- end or Protocol :: HTTP :: Response [ 404 , { } , [ ] ]
107+ end or [ 404 , { } , [ ] ]
108108 end
109109
110110 def test_middleware_body_itself ( env )
You can’t perform that action at this time.
0 commit comments