aboutsummaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorLuchi <39198766+luchihoratiu@users.noreply.github.com>2021-02-18 17:03:50 +0200
committerGitHub <noreply@github.com>2021-02-18 17:03:50 +0200
commit771a514cbc792481d98b29ec48fe5e369fa111aa (patch)
treeca5799c83276b44350c97a64d7544209027c40de /Gemfile
parentcbd8518d736f5d50b95a0fc12335b09a5de4bffc (diff)
parent6271cd43030547950d7d26de88c4392cf46bde56 (diff)
downloadpuppet-sshkeys_core-771a514cbc792481d98b29ec48fe5e369fa111aa.tar.gz
puppet-sshkeys_core-771a514cbc792481d98b29ec48fe5e369fa111aa.tar.bz2
Merge pull request #45 from GabrielNagy/MODULES-10945/gemfile-updates
(MODULES-10945) Core module spring cleaning 2021
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index ede9290..5f131ee 100644
--- a/Gemfile
+++ b/Gemfile
@@ -37,16 +37,21 @@ group :development do
gem "puppet-strings", require: false
gem "github_changelog_generator", require: false, git: 'https://github.com/skywinder/github-changelog-generator', ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')
end
+
group :system_tests do
- gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]
- gem "puppet-module-win-system-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
+ gem "puppet-module-posix-system-r#{minor_version}", '~> 0.5', require: false, platforms: [:ruby]
+ gem "puppet-module-win-system-r#{minor_version}", '~> 0.5', require: false, platforms: [:mswin, :mingw, :x64_mingw]
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '~> 4')
gem "beaker-abs", *location_for(ENV['BEAKER_ABS_VERSION'] || '~> 0.5')
gem "beaker-pe", require: false
gem "beaker-hostgenerator"
gem "beaker-rspec"
- gem "pdk", '~> 1.18', platforms: [:ruby]
+ gem "beaker-puppet", *location_for(ENV['BEAKER_PUPPET_VERSION'] || '~> 1.0')
+end
+
+group :release do
gem "puppet-blacksmith", '~> 3.4', require: false
+ gem "pdk", platforms: [:ruby]
end
puppet_version = ENV['PUPPET_GEM_VERSION']