Skip to content

Commit

Permalink
Test beaker on Ruby 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Oct 28, 2024
1 parent e80b140 commit ebcc89c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ group :development do
gem 'overcommit', '>= 0.39.1', :require => false
end

group :system_tests do
gem 'voxpupuli-acceptance', '~> 3.0', :require => false
# only enable this gem group when we're on Ruby 3.1 or newer
# beaker depends on Ruby 3.1 and bundler will poop itself when you're on an older Ruby (even when the gem group is ignored)
if Gem::Requirement.create('>= 3.1.0').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
group :system_tests do
gem 'beaker', git: 'https://github.com/bastelfreak/beaker', branch: 'ruby31'
gem 'voxpupuli-acceptance', '~> 3.0', :require => false
end
end

group :release do
Expand Down

0 comments on commit ebcc89c

Please sign in to comment.