enkessler/cuke_modeler

View on GitHub
testing/gemfiles/gherkin18.gemfile

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'

gemspec path: '../../'


if RUBY_VERSION =~ /^2\.[34]/
  gem 'activesupport', '< 6.0' # Requires Ruby 2.5 at this version
  gem 'cucumber', '2.2.0' # No recent version of cucumber that supports Ruby < 2.5 and cucumber-gherkin 18
  gem 'parallel', '< 1.20' # Requires Ruby 2.5 at this version
else
  gem 'activesupport', '< 7.1' # API changes that (transitively) break this version of cucumber-gherkin
  gem 'cucumber', '>=4.0.0.rc.4' # The minimum version of Cucumber that uses the `cucumber-gherkin` gem
end

gem 'cucumber-gherkin', '~> 18.0'