Gemfile 862 B

12345678910111213141516171819202122232425262728293031323334
  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
  22. group :macos do
  23. gem 'rbnacl', '< 5.0', :require => false
  24. gem 'rbnacl-libsodium', :require => false
  25. gem 'bcrypt_pbkdf', '< 2.0', :require => false
  26. gem 'ffi', '= 1.10.0', :require => false
  27. end