We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b5625a commit 83d690dCopy full SHA for 83d690d
.github/workflows/test.yaml
@@ -89,7 +89,11 @@ jobs:
89
gemfile: "gems/unicorn-v6-rack-v2.rb"
90
server: "unicorn -E none"
91
endpoint: "http://localhost:8080"
92
-
+ - ruby: "3.1"
93
+ name: "Unicorn-v6-Rack-v3-http"
94
+ gemfile: "gems/unicorn-v6-rack-v3.rb"
95
+ server: "unicorn -E none"
96
+ endpoint: "http://localhost:8080"
97
steps:
98
- uses: actions/checkout@v3
99
- uses: ruby/setup-ruby@v1
gems/unicorn-v6-rack-v3.rb
@@ -0,0 +1,12 @@
1
+# frozen_string_literal: true
2
+
3
+# Released under the MIT License.
4
+# Copyright, 2022, by Samuel Williams.
5
6
+eval_gemfile '../gems.rb'
7
8
+gem "unicorn", "~> 6.0"
9
+gem "rack", "~> 3.0"
10
11
+# export RACK_CONFORM_SERVER="unicorn -E none"
12
+# export RACK_CONFORM_ENDPOINT="http://localhost:8080"
0 commit comments