12345678910111213141516171819202122232425262728 |
- # This file is only used for running the test suite with kitchen-salt.
- source 'https://rubygems.org'
- # Point this back at the test-kitchen package after >1.2.5 is relased
- gem 'test-kitchen', :git => 'https://github.com/dwoz/test-kitchen.git', :branch => 'keepalive_maxcount'
- gem 'kitchen-salt', :git => 'https://github.com/saltstack/kitchen-salt.git'
- gem 'kitchen-sync'
- gem 'git'
- group :docker do
- gem 'kitchen-docker', :git => 'https://github.com/s0undt3ch/kitchen-docker.git'
- end
- group :windows do
- gem 'winrm', '~>2.0'
- # gem 'winrm-fs', '~>1.3.1'
- gem 'winrm-fs', :git => 'https://github.com/s0undt3ch/winrm-fs.git', :branch => 'hotfix/saltstack-ci'
- end
- group :ec2 do
- gem 'kitchen-ec2'
- end
- group :vagrant do
- gem 'vagrant-wrapper'
- gem 'kitchen-vagrant'
- end
|