-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gemfile
66 lines (53 loc) · 1.36 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
61
62
63
64
65
66
# encoding: UTF-8
# -*- mode: ruby -*-
# vi: set ft=ruby :
# 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', '~> 0.9.5'
end
group :test do
gem 'rake'
gem 'berkshelf', '~> 6.0'
gem 'thor', '0.19.1' # Fix: http://stackoverflow.com/a/40823637
end
group :style do
gem 'foodcritic', '~> 6.3.0'
gem 'rubocop', '~> 0.40.0'
end
group :unit do
gem 'chef', chef_version unless chef_version.nil?
gem 'chefspec', '~> 5.3'
gem 'simplecov', '~> 0.12.0'
gem 'should_not', '~> 1.1'
gem 'chef-vault', '~> 2.9'
end
group :integration do
gem 'test-kitchen', '~> 1.13'
end
group :integration_docker do
gem 'kitchen-docker', '~> 2.1'
end
group :integration_vagrant do
gem 'vagrant-wrapper', '~> 2.0'
gem 'kitchen-vagrant', '~> 0.20.0'
end
group :integration_cloud do
gem 'kitchen-ec2', '~> 1.2'
gem 'kitchen-digitalocean', '~> 0.9.5'
end
group :guard do
gem 'guard', '~> 2.14'
gem 'guard-foodcritic', '~> 2.1'
gem 'guard-rubocop', '~> 1.1'
gem 'guard-rspec', '~> 4.3'
# Temporary disabled: Error is: cannot load such file -- guard/kitchen
# gem 'guard-kitchen', '~> 0.0'
end
group :travis do
gem 'coveralls', '~> 0.7', require: false
end