Gemfile 933 B

123456789101112131415161718192021222324252627282930313233343536
  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.23.3 is relased
  4. gem 'test-kitchen', '~>1.23.3'
  5. gem 'kitchen-salt', :git => 'https://github.com/s0undt3ch/kitchen-salt.git', :branch => 'features/nox'
  6. gem 'kitchen-sync'
  7. gem 'git'
  8. group :docker do
  9. gem 'kitchen-docker', :git => 'https://github.com/test-kitchen/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
  23. group :macos do
  24. gem 'rbnacl', '< 5.0', :require => false
  25. gem 'rbnacl-libsodium', :require => false
  26. gem 'bcrypt_pbkdf', '< 2.0', :require => false
  27. gem 'ffi', '= 1.10.0', :require => false
  28. end