2019-10-09 19:59:33 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
source 'https://rubygems.org'
|
2019-07-10 22:22:37 +02:00
|
|
|
|
2020-10-26 23:55:37 +01: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'
|
2021-03-23 22:34:51 +01:00
|
|
|
# Install the `kitchen-docker` gem using `git` because the latest version
|
2020-10-26 23:55:37 +01:00
|
|
|
# currently available (`2.10.0`) doesn't include a recent fix for Gentoo.
|
2021-02-17 14:55:09 +01: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-07 01:09:42 +02:00
|
|
|
gem 'kitchen-inspec', '>= 2.2.1'
|
|
|
|
gem 'kitchen-salt', '>= 0.6.3'
|