mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
791e3ff37b
Revert this after there is an upstream release
27 lines
549 B
Ruby
27 lines
549 B
Ruby
# This file is only used for running the test suite with kitchen-salt.
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'test-kitchen', '~>1.21'
|
|
gem 'kitchen-salt', '~>0.2'
|
|
gem 'kitchen-sync'
|
|
gem 'git'
|
|
|
|
group :docker do
|
|
gem 'kitchen-docker', :git => 'https://github.com/test-kitchen/kitchen-docker.git'
|
|
end
|
|
|
|
group :windows do
|
|
gem 'winrm', '~>2.0'
|
|
gem 'winrm-fs', :git => 'https://github.com/dwoz/winrm-fs.git', :branch => 'chunked_downloads'
|
|
end
|
|
|
|
group :ec2 do
|
|
gem 'kitchen-ec2'
|
|
end
|
|
|
|
group :vagrant do
|
|
gem 'vagrant-wrapper'
|
|
gem 'kitchen-vagrant'
|
|
end
|