-
- Downloads
ci(gemfile+lock): use `ssf` customised `inspec` repo [skip ci]
* Automated using https://github.com/myii/ssf-formula/pull/357
... | ... | @@ -2,13 +2,18 @@ |
source 'https://rubygems.org' | ||
# 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 using `git` because the latest version | ||
# currently available (`2.10.0`) doesn't include a recent fix for Gentoo. | ||
# 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) | ||
# rubocop:disable Layout/LineLength | ||
gem 'kitchen-docker', git: 'https://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker', branch: 'ssf' | ||
# rubocop:enable Layout/LineLength | ||
gem 'kitchen-inspec', '>= 2.5.0' | ||
gem 'kitchen-salt', '>= 0.6.3' |