Skip to content

Commit

Permalink
Merge pull request #904 from cucumber/support-cucumber-9
Browse files Browse the repository at this point in the history
Support cucumber version 9.0
  • Loading branch information
mvz committed Sep 1, 2023
2 parents 7e31af0 + 8d64c61 commit aa8a092
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:

strategy:
matrix:
ruby: ["3.1", "3.2", "jruby-9.3", "jruby-9.4"]
appraisal: [cucumber_8]
ruby: ["3.1", "3.2", "jruby-9.4"]
appraisal: [cucumber_8, cucumber_9]
include:
- ruby: "2.6"
appraisal: cucumber_4
Expand All @@ -34,6 +34,8 @@ jobs:
appraisal: cucumber_6
- ruby: "3.0"
appraisal: cucumber_7
- ruby: "jruby-9.3"
appraisal: cucumber_8

env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ end
appraise "cucumber_8" do
gem "cucumber", "~> 8.0"
end

appraise "cucumber_9" do
gem "cucumber", ["~> 9.0", ">= 9.0.1"]
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Aruba is supported on Ruby 2.6 and up, and tested against CRuby 2.6, 2.7, 3.0,

## Supported Cucumber versions

Aruba is supported on and tested with Cucumber versions 4 through 8.
Aruba is supported on and tested with Cucumber versions 4 through 9.

## Supported operating systems

Expand Down
2 changes: 1 addition & 1 deletion aruba.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency "bundler", [">= 1.17", "< 3.0"]
spec.add_runtime_dependency "contracts", [">= 0.16.0", "< 0.18.0"]
spec.add_runtime_dependency "cucumber", ">= 4.0", "< 9.0"
spec.add_runtime_dependency "cucumber", ">= 4.0", "< 10.0"
spec.add_runtime_dependency "rspec-expectations", "~> 3.4"
spec.add_runtime_dependency "thor", "~> 1.0"

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/cucumber_9.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "cucumber", ["~> 9.0", ">= 9.0.1"]

gemspec path: "../"

0 comments on commit aa8a092

Please sign in to comment.