Skip to content

Commit 99e71db

Browse files
committed
βœ… Remove ruby 2.2 test harness
- No longer supported by GitHub
1 parent bb471b2 commit 99e71db

File tree

6 files changed

+7
-25
lines changed

6 files changed

+7
-25
lines changed

β€ŽAppraisalsβ€Ž

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,24 @@ appraise "current" do
3232
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
3333
end
3434

35-
appraise "ruby-2-2" do
36-
eval_gemfile "modular/faraday_v0.gemfile"
37-
eval_gemfile "modular/jwt_v1.gemfile"
38-
eval_gemfile "modular/rack_v1_2.gemfile"
39-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
40-
end
41-
4235
appraise "ruby-2-3" do
4336
eval_gemfile "modular/faraday_v0.gemfile"
4437
eval_gemfile "modular/jwt_v1.gemfile"
45-
eval_gemfile "modular/rack_v1_6.gemfile"
38+
eval_gemfile "modular/rack_v1_2.gemfile"
4639
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
4740
end
4841

4942
appraise "ruby-2-4" do
5043
eval_gemfile "modular/faraday_v1.gemfile"
5144
eval_gemfile "modular/jwt_v1.gemfile"
52-
eval_gemfile "modular/rack_v2.gemfile"
45+
eval_gemfile "modular/rack_v1_6.gemfile"
5346
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
5447
end
5548

5649
appraise "ruby-2-5" do
5750
eval_gemfile "modular/faraday_v1.gemfile"
5851
eval_gemfile "modular/jwt_v2.gemfile"
59-
eval_gemfile "modular/rack_v3.gemfile"
52+
eval_gemfile "modular/rack_v2.gemfile"
6053
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
6154
end
6255

β€Žgemfiles/modular/rack_v1_2.gemfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# Ruby >= 0
44
# This is the oldest minor version of rack this gem is compatible with
5-
# We will test it against Ruby 2.2
5+
# We will test it against Ruby 2.3
66
gem "rack", "~> 1.2", ">= 1.2.8"

β€Žgemfiles/modular/rack_v1_6.gemfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# Ruby >= 0
44
# This is the newest version of rack that installs on Ruby < 2.2.2
5-
# We will test it against Ruby 2.3
5+
# We will test it against Ruby 2.4
66
gem "rack", "~> 1.6", ">= 1.6.13"

β€Žgemfiles/modular/rack_v2.gemfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# Ruby >= 2.3
44
# This version of rack is the last compatible with Ruby 2.3
5-
# We will test it against Ruby 2.4
5+
# We will test it against Ruby 2.5
66
gem "rack", "~> 2.2", ">= 2.2.14"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
# Ruby >= 2.4
4-
# We will test it against Ruby 2.5+
4+
# We will test it against Ruby 2.6+
55
gem "rack", "~> 3.1", ">= 3.1.14"

β€Žgemfiles/ruby_2_2.gemfileβ€Ž

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
Β (0)