-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (29 loc) · 853 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
source 'http://rubygems.org'
group :development do
gem 'rake'
gem 'rubocop' #, '~> 0.49'
# Foodcritic 13 drops Chef 12 compatibility:
gem 'foodcritic', '< 13'
# Newer versions break foodcritic:
# https://github.com/Foodcritic/foodcritic/commit/28f6684
gem 'cucumber-core', '>= 1.3', '< 4.0'
gem 'berkshelf'
# take Chef version from environment, fall back to newest version:
gem 'chef', (ENV['CHEF_VERSION']) ? "~> #{ENV['CHEF_VERSION']}" : "< 15"
gem 'chefspec', '< 7.2'
gem 'chefspec-ohai'
# test-kitchen pulls Chef's crappy license-acceptance gem
gem 'test-kitchen', '< 2.2'
# gem 'guard-rspec', require: false
# gem 'libnotify'
# gem "serverspec"
end
group :travis do
gem 'kitchen-docker'
end
group :vagrant do
gem 'vagrant'
gem 'kitchen-vagrant'
gem 'vagrant-libvirt'
gem 'vagrant-berkshelf'
end