2019-10-08 15:56:51 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-05-30 12:29:41 -04:00
|
|
|
source ENV.fetch('PROXY_RUBYGEMSORG', 'https://rubygems.org')
|
2019-05-27 10:12:27 -04:00
|
|
|
|
2021-08-04 16:57:02 -04: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 08:54:04 -05: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 16:57:02 -04:00
|
|
|
|
2021-07-17 15:30:29 -04:00
|
|
|
gem 'kitchen-inspec', '>= 2.5.0'
|
2022-02-01 18:42:59 -05:00
|
|
|
gem 'kitchen-salt', '>= 0.7.2'
|