File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Gemfile:
28
28
- gem : beaker-puppet
29
29
from_env : BEAKER_PUPPET_VERSION
30
30
version : ' ~> 3.0'
31
- condition : Gem::Requirement.create('< 3.1 .0').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
31
+ condition : Gem::Requirement.create('< 3.2 .0').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
32
32
- gem : beaker-module_install_helper
33
33
- gem : beaker-puppet_install_helper
34
34
- gem : nokogiri
@@ -65,4 +65,5 @@ Rakefile:
65
65
extra_disabled_lint_checks :
66
66
- puppet_url_without_modules
67
67
requires :
68
- - voxpupuli/acceptance/rake
68
+ - require : voxpupuli/acceptance/rake
69
+ conditional : Gem.loaded_specs.key? 'voxpupuli-acceptance'
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ group :development do
41
41
gem "beaker-docker" , '~> 0.3' , require : false
42
42
gem "beaker-hostgenerator"
43
43
gem "beaker-rspec"
44
- gem "beaker-puppet" , *location_for ( ENV [ 'BEAKER_PUPPET_VERSION' ] || '~> 3.0' ) if Gem ::Requirement . create ( '< 3.1 .0' ) . satisfied_by? ( Gem ::Version . new ( RUBY_VERSION . dup ) )
44
+ gem "beaker-puppet" , *location_for ( ENV [ 'BEAKER_PUPPET_VERSION' ] || '~> 3.0' ) if Gem ::Requirement . create ( '< 3.2 .0' ) . satisfied_by? ( Gem ::Version . new ( RUBY_VERSION . dup ) )
45
45
gem "beaker-module_install_helper" , require : false
46
46
gem "beaker-puppet_install_helper" , require : false
47
47
gem "nokogiri" , require : false
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require 'puppetlabs_spec_helper/rake_tasks'
6
6
require 'puppet-syntax/tasks/puppet-syntax'
7
7
require 'github_changelog_generator/task' if Gem . loaded_specs . key? 'github_changelog_generator'
8
8
require 'puppet-strings/tasks' if Gem . loaded_specs . key? 'puppet-strings'
9
- require 'voxpupuli/acceptance/rake'
9
+ require 'voxpupuli/acceptance/rake' if Gem . loaded_specs . key? 'voxpupuli-acceptance'
10
10
11
11
def changelog_user
12
12
return unless Rake . application . top_level_tasks . include? "changelog"
You can’t perform that action at this time.
0 commit comments