Skip to content

Commit 76f5ffd

Browse files
Fixed names of appraisals to match gemfiles
1 parent c1ec289 commit 76f5ffd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- "3.3"
2424
- "3.4"
2525
gemfile:
26-
- "puma-6-latest"
27-
- "puma-6.5-latest"
28-
- "puma-7-latest"
26+
- "puma_6_latest"
27+
- "puma_6.5_latest"
28+
- "puma_7_latest"
2929
runs-on: ${{ matrix.os }}
3030
env:
3131
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile

Appraisals

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Significance: Puma < v6.5 does not have on_stopped.
2-
appraise "puma-6-latest" do
2+
appraise "puma_6_latest" do
33
gem "puma", ">= 6", "< 6.5.0"
44
end
55

66
# Significance: Puma v6.5 added on_stopped.
7-
appraise "puma-6.5-latest" do
7+
appraise "puma_6.5_latest" do
88
gem "puma", ">= 6.5", "< 7.0.0"
99
end
1010

1111
# Significance: Puma v7 renamed all hooks.
12-
appraise "puma-7-latest" do
12+
appraise "puma_7_latest" do
1313
gem "puma", ">= 7", "< 8.0.0"
1414
end

0 commit comments

Comments
 (0)