forked from zuazo/dovecot-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (48 loc) · 1.05 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# More info at http://bundler.io/gemfile.html
#
# Many of the gem versions installed here are based on the versions installed
# by ChefDK.
source 'https://rubygems.org'
chef_version = ENV.key?('CHEF_VERSION') ? ENV['CHEF_VERSION'] : nil
group :doc do
gem 'yard'
end
group :test do
gem 'berkshelf', '~> 7.0'
gem 'rake'
end
group :style do
gem 'foodcritic', '~> 14.0.0'
gem 'rubocop', '~> 0.58.0'
end
group :unit do
gem 'chef', chef_version unless chef_version.nil?
gem 'chefspec', '= 7.2.1'
gem 'cucumber', '~> 3.1.2'
gem 'should_not', '~> 1.1.0'
gem 'simplecov', '~> 0.16.1'
end
group :integration do
gem 'test-kitchen'
end
group :integration_docker do
gem 'kitchen-docker'
end
group :integration_vagrant do
gem 'kitchen-vagrant'
gem 'vagrant-wrapper'
end
group :integration_cloud do
gem 'kitchen-digitalocean', '~> 0.9.5'
gem 'kitchen-ec2', '~> 1.2'
end
group :guard do
gem 'guard'
gem 'guard-foodcritic'
gem 'guard-kitchen'
gem 'guard-rspec'
gem 'guard-rubocop'
end
group :travis do
gem 'coveralls', require: false
end