ci: test against latest rack minor versions

This commit is contained in:
Gonzalo 2020-02-04 14:15:07 -03:00
parent 0a80e30f46
commit 9f93d34492
No known key found for this signature in database
GPG key ID: 319EB6E3DB0D60FA
4 changed files with 9 additions and 9 deletions

View file

@ -14,8 +14,8 @@ before_install:
- gem install bundler -v "~> 2.0"
gemfile:
- gemfiles/rack_2_0.gemfile
- gemfiles/rack_1_6.gemfile
- gemfiles/rack_2.gemfile
- gemfiles/rack_1.gemfile
- gemfiles/rails_6_0.gemfile
- gemfiles/rails_5_2.gemfile
- gemfiles/rails_5_1.gemfile
@ -33,7 +33,7 @@ matrix:
allow_failures:
- rvm: ruby-head
exclude:
- gemfile: gemfiles/rack_1_6.gemfile
- gemfile: gemfiles/rack_1.gemfile
rvm: 2.7.0
- gemfile: gemfiles/rails_4_2.gemfile
rvm: 2.7.0

View file

@ -1,16 +1,16 @@
# frozen_string_literal: true
appraise "rack_2_0" do
gem "rack", "~> 2.0.4"
appraise "rack_2" do
gem "rack", "~> 2.0"
end
appraise "rack_1_6" do
appraise "rack_1" do
# Override activesupport and actionpack version constraints by making
# it more loose so it's compatible with rack 1.6.x
gem "actionpack", ">= 4.2"
gem "activesupport", ">= 4.2"
gem "rack", "~> 1.6.9"
gem "rack", "~> 1.6"
# Override rack-test version constraint by making it more loose
# so it's compatible with actionpack 4.2.x

View file

@ -4,7 +4,7 @@ source "https://rubygems.org"
gem "actionpack", ">= 4.2"
gem "activesupport", ">= 4.2"
gem "rack", "~> 1.6.9"
gem "rack", "~> 1.6"
gem "rack-test", ">= 0.6"
gemspec path: "../"

View file

@ -2,6 +2,6 @@
source "https://rubygems.org"
gem "rack", "~> 2.0.4"
gem "rack", "~> 2.0"
gemspec path: "../"