forked from hartmantis/clamav-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (40 loc) · 815 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
38
39
40
41
42
43
44
45
46
# Encoding: UTF-8
source 'https://rubygems.org'
group :development do
gem 'yard-chef'
gem 'guard'
gem 'guard-rspec'
gem 'guard-kitchen'
end
group :test do
gem 'rake'
gem 'cane'
gem 'countloc'
gem 'rubocop'
gem 'foodcritic'
gem 'guard-foodcritic'
gem 'rspec', '>= 3'
gem 'chefspec', '>= 4'
gem 'simplecov'
gem 'simplecov-console'
gem 'coveralls'
gem 'fauxhai'
gem 'test-kitchen'
gem 'kitchen-digitalocean', '>= 0.8.0'
gem 'fog'
gem 'kitchen-vagrant'
# TODO: This can go away when ChefDK comes with 1.6.4+
# (See https://github.com/chef/chef-dk/issues/278)
gem 'nokogiri', '< 1.6.4'
end
group :integration do
gem 'serverspec', '>= 2'
gem 'cucumber'
end
group :deploy do
gem 'stove'
end
group :production do
gem 'chef', '>= 11'
gem 'berkshelf', '>= 3'
end