Skip to content

Commit

Permalink
feat: relax rack-test dependency to allow version 2 (#270)
Browse files Browse the repository at this point in the history
rack-test has a number of fixes and improvements:
https://github.com/rack/rack-test/blob/main/History.md
  • Loading branch information
stanhu authored Sep 28, 2022
1 parent 91da38f commit a619deb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions example/animal-service/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
pact (1.62.0)
pact-mock_service (~> 3.0, >= 3.3.1)
pact-support (~> 1.16, >= 1.16.9)
rack-test (>= 0.6.3, < 2.0.0)
rack-test (>= 0.6.3, < 3.0.0)
rspec (~> 3.0)
term-ansicolor (~> 1.0)
thor (>= 0.20, < 2.0)
Expand Down Expand Up @@ -46,8 +46,8 @@ GEM
rack (2.2.4)
rack-protection (2.2.2)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rack-test (2.0.2)
rack (>= 1.3)
rainbow (3.1.1)
rake (13.0.6)
rspec (3.11.0)
Expand Down
6 changes: 3 additions & 3 deletions example/zoo-app/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
pact (1.62.0)
pact-mock_service (~> 3.0, >= 3.3.1)
pact-support (~> 1.16, >= 1.16.9)
rack-test (>= 0.6.3, < 2.0.0)
rack-test (>= 0.6.3, < 3.0.0)
rspec (~> 3.0)
term-ansicolor (~> 1.0)
thor (>= 0.20, < 2.0)
Expand Down Expand Up @@ -57,8 +57,8 @@ GEM
coderay (~> 1.1)
method_source (~> 1.0)
rack (2.2.4)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rack-test (2.0.2)
rack (>= 1.3)
rainbow (3.1.1)
rake (13.0.6)
rspec (3.11.0)
Expand Down
2 changes: 1 addition & 1 deletion pact.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |gem|
}

gem.add_runtime_dependency 'rspec', '~> 3.0'
gem.add_runtime_dependency 'rack-test', '>= 0.6.3', '< 2.0.0'
gem.add_runtime_dependency 'rack-test', '>= 0.6.3', '< 3.0.0'
gem.add_runtime_dependency 'thor', '>= 0.20', '< 2.0'
gem.add_runtime_dependency 'webrick', '~> 1.3'
gem.add_runtime_dependency 'term-ansicolor', '~> 1.0'
Expand Down

0 comments on commit a619deb

Please sign in to comment.