Skip to content

Commit

Permalink
Locking down dependencies in CI
Browse files Browse the repository at this point in the history
Limiting more dependency versions for newer version of Ruby and Cucumber.
  • Loading branch information
enkessler committed Jun 9, 2020
1 parent f87f689 commit 5003a42
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gemfiles/cuke_modeler3.gemfile
Expand Up @@ -4,3 +4,8 @@ gemspec :path => "../"

gem 'cuke_modeler', '~> 3.0'

gem 'cucumber', '2.2.0' # `cucumber` 4.x does not currently work on JRuby

if RUBY_VERSION =~ /^2\.[1234]/
gem 'activesupport', '< 6.0' # `activesupport` 6.x requires at least Ruby 2.5
end

0 comments on commit 5003a42

Please sign in to comment.