Gemfile 662 B

123456789101112131415161718192021222324252627
  1. # This file is only used for running the test suite with kitchen-salt.
  2. source 'https://rubygems.org'
  3. gem 'test-kitchen', '~>1.23.3'
  4. gem 'kitchen-salt', :git => 'https://github.com/s0undt3ch/kitchen-salt.git', :branch => 'features/nox'
  5. gem 'kitchen-sync'
  6. gem 'git'
  7. group :docker do
  8. gem 'kitchen-docker', :git => 'https://github.com/test-kitchen/kitchen-docker.git'
  9. end
  10. group :windows do
  11. gem 'winrm', '~>2.0'
  12. # gem 'winrm-fs', '~>1.3.1'
  13. gem 'winrm-fs', :git => 'https://github.com/s0undt3ch/winrm-fs.git', :branch => 'hotfix/saltstack-ci'
  14. end
  15. group :ec2 do
  16. gem 'kitchen-ec2'
  17. end
  18. group :vagrant do
  19. gem 'vagrant-wrapper'
  20. gem 'kitchen-vagrant'
  21. end