2019-10-08 15:52:21 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
source 'https://rubygems.org'
|
2018-08-23 07:07:21 -04:00
|
|
|
|
2020-10-26 18:50:41 -04:00
|
|
|
# Use the latest version of `inspec` prior to `4.23.4`, which introduces a
|
|
|
|
# regression where the diff isn't displayed when comparing using `eq`.
|
|
|
|
gem 'inspec', '~> 4.22.22'
|
|
|
|
# Install the `kitchen-docker` gem from GitHub because the latest version
|
|
|
|
# currently available (`2.10.0`) doesn't include a recent fix for Gentoo.
|
2021-02-17 08:50:49 -05:00
|
|
|
# rubocop:disable Layout/LineLength
|
|
|
|
gem 'kitchen-docker', git: 'https://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker', branch: 'ssf'
|
|
|
|
# rubocop:enable Layout/LineLength
|
2020-10-06 19:05:24 -04:00
|
|
|
gem 'kitchen-inspec', '>= 2.2.1'
|
|
|
|
gem 'kitchen-salt', '>= 0.6.3'
|