2019-10-09 15:45:57 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
source 'https://rubygems.org'
|
2019-04-12 17:34:35 +02:00
|
|
|
|
2021-08-04 22:54:57 +02:00
|
|
|
# Install the `inspec` gem using `git` because versions after `4.22.22`
|
|
|
|
# suppress diff output; this version fixes this for our uses.
|
|
|
|
# rubocop:disable Layout/LineLength
|
|
|
|
gem 'inspec', git: 'https://gitlab.com/saltstack-formulas/infrastructure/inspec', branch: 'ssf'
|
|
|
|
# rubocop:enable Layout/LineLength
|
|
|
|
|
|
|
|
# Install the `kitchen-docker` gem using `git` in order to gain a performance
|
|
|
|
# improvement: avoid package installations which are already covered by the
|
|
|
|
# `salt-image-builder` (i.e. the pre-salted images that we're using)
|
2021-02-17 14:51:30 +01:00
|
|
|
# rubocop:disable Layout/LineLength
|
|
|
|
gem 'kitchen-docker', git: 'https://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker', branch: 'ssf'
|
|
|
|
# rubocop:enable Layout/LineLength
|
2021-08-04 22:54:57 +02:00
|
|
|
|
2021-07-17 21:27:50 +02:00
|
|
|
gem 'kitchen-inspec', '>= 2.5.0'
|
2020-10-07 01:06:06 +02:00
|
|
|
gem 'kitchen-salt', '>= 0.6.3'
|
2021-04-03 10:23:08 +02:00
|
|
|
|
|
|
|
group :vagrant do
|
|
|
|
gem 'kitchen-vagrant'
|
|
|
|
end
|