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 9be2b9e commit 2e8445bCopy full SHA for 2e8445b
.github/workflows/test.yaml
@@ -89,6 +89,11 @@ jobs:
89
gemfile: "gems/thin-v1-rack-v2.rb"
90
server: "thin start"
91
endpoint: "http://localhost:3000"
92
+ - ruby: "3.4"
93
+ name: "Thin-v2-Rack-v3-http"
94
+ gemfile: "gems/thin-v2-rack-v3.rb"
95
+ server: "thin start"
96
+ endpoint: "http://localhost:3000"
97
- ruby: "3.4"
98
name: "Unicorn-v6-Rack-v2-http"
99
gemfile: "gems/unicorn-v6-rack-v2.rb"
gems/thin-v2-rack-v3.rb
@@ -0,0 +1,9 @@
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 "thin", github: "macournoyer/thin"
9
+gem "rack", "~> 3.0"
0 commit comments