mirror of
https://github.com/saltstack-formulas/sysctl-formula.git
synced 2026-05-07 12:53:20 +02:00
28 lines
1.1 KiB
Ruby
28 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# This is a placeholder version to remind us to update the Gemfile
|
|
# when a new stable Chef Workstation is released
|
|
# renovate: chef-workstation 25.13.7
|
|
|
|
source ENV.fetch('PROXY_RUBYGEMSORG', 'https://rubygems.org')
|
|
|
|
# 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://github.com/test-kitchen/kitchen-docker', ref: '511e4ad36856b9e2eccceb56603586e6cebd296a'
|
|
# rubocop:enable Layout/LineLength
|
|
|
|
gem 'kitchen-inspec', '3.1.0'
|
|
gem 'kitchen-salt', '0.7.2'
|
|
|
|
gem 'net-ssh', '7.3.0'
|
|
|
|
gem 'test-kitchen', '3.9.1'
|