blob: 77b45e733dd51fa196244c73464d0adb886b9506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
source "https://rubygems.org"
gem "chef-acceptance", github: "chef/chef-acceptance"
gem "kitchen-ec2"
gem "inspec"
# Pinning to github for kitchen-vagrant because 0.19.0 incorrectly
# puts in a box_url for bento when a vagrant box in atlas is specified
gem "kitchen-vagrant"
gem "windows_chef_zero"
gem "kitchen-inspec"
gem "test-kitchen"
gem "winrm-elevated"
gem "berkshelf", "4.3.5"
# until 2.0.0 is fixed for unstable packages
gem "mixlib-install", "1.2.3"
# nio4r 2.x was throwing a "could not install" error because of a Ruby version
# conflict (that didn't actually exist). Since the only gem that really needs
# it is celluloid, let's just pin it until it becomes a bigger problem.
gem "nio4r", ">= 1.1.0", "< 2.0.0"
|