Gemfile 775 B

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