Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • v0.52.5
  • v0.52.4
  • v0.52.3
  • v0.52.2
  • v0.52.1
  • v0.52.0
  • v0.51.0
  • v0.50.0
  • v0.49.0
10 results

Gemfile

Blame
  • Gemfile 863 B
    # frozen_string_literal: true
    
    source ENV['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://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker', branch: 'ssf'
    # rubocop:enable Layout/LineLength
    
    gem 'kitchen-inspec', '>= 2.5.0'
    gem 'kitchen-salt', '>= 0.7.2'