-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update gem dependencies and use Puppet 8 by default
- Loading branch information
Showing
10 changed files
with
41 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Simp; end | ||
|
||
module Simp::BeakerHelpers | ||
VERSION = '1.31.0' | ||
VERSION = '1.32.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,19 +16,19 @@ Gem::Specification.new do |s| | |
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/simp/rubygem-simp-beaker-helpers' | ||
s.metadata = { | ||
'issue_tracker' => 'https://simp-project.atlassian.net' | ||
'issue_tracker' => 'https://github.com/simp/rubygem-simp-beaker-helpers/issues' | ||
} | ||
|
||
s.required_ruby_version = '>= 2.3.0' | ||
|
||
s.add_runtime_dependency 'beaker' , ['>= 4.17.0', '< 6.0.0'] | ||
s.add_runtime_dependency 'beaker-rspec' , '~> 8.0' | ||
s.add_runtime_dependency 'beaker-puppet' , ['>= 1.18.14', '< 2.0.0'] | ||
s.add_runtime_dependency 'beaker-docker' , ['>= 0.8.3', '< 2.0.0'] | ||
s.add_runtime_dependency 'docker-api' , ['>= 2.1.0', '< 3.0.0'] | ||
s.add_runtime_dependency 'beaker-vagrant' , ['>= 0.6.4', '< 2.0.0'] | ||
s.add_runtime_dependency 'highline' , '~> 2.0' | ||
s.add_runtime_dependency 'nokogiri' , '~> 1.8' | ||
s.add_runtime_dependency 'beaker', ['>= 4.17.0', '< 6.0.0'] | ||
s.add_runtime_dependency 'beaker-rspec', '~> 8.0' | ||
s.add_runtime_dependency 'beaker-puppet', ['>= 1.18.14', '< 3.0.0'] | ||
s.add_runtime_dependency 'beaker-docker', ['>= 0.8.3', '< 3.0.0'] | ||
s.add_runtime_dependency 'docker-api', ['>= 2.1.0', '< 3.0.0'] | ||
s.add_runtime_dependency 'beaker-vagrant', ['>= 0.6.4', '< 2.0.0'] | ||
s.add_runtime_dependency 'highline', '~> 2.0' | ||
s.add_runtime_dependency 'nokogiri', '~> 1.8' | ||
|
||
### s.files = Dir['Rakefile', '{bin,lib,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z .`.split("\0") | ||
s.files = `git ls-files`.split("\n") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,14 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
--- | ||
HOSTS: | ||
amzn2: | ||
roles: | ||
- default | ||
platform: el-7-x86_64 | ||
box: gbailey/amzn2 | ||
hypervisor: <%= hypervisor %> | ||
hypervisor: "<%= ENV.fetch('BEAKER_HYPERVISOR', 'vagrant') %>" | ||
|
||
CONFIG: | ||
log_level: verbose | ||
synced_folder : disabled | ||
synced_folder: disabled | ||
type: aio | ||
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%> | ||
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %> | ||
<% end -%> | ||
puppet_collection: "<%= ENV.fetch('BEAKER_PUPPET_COLLECTION', 'puppet8') %>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters