forked from sous-chefs/apache2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (35 loc) · 1.19 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
source 'https://rubygems.org'
# resolve nokogiri updates for chefdk, although it may force chefdk now
# https://github.com/chef/chef-dk/issues/278#issuecomment-89251860
ENV['PKG_CONFIG_PATH'] = '/opt/chefdk/embedded/lib/pkgconfig'
gem 'berkshelf', '~> 4.3', '>= 4.3.2'
group :unit do
gem 'foodcritic', '~> 6.2', '>= 6.2.0'
gem 'rubocop', '~> 0.40', '>= 0.40.0'
gem 'chefspec', '~> 4.6', '>= 4.6.1'
end
group :integration do
gem 'test-kitchen', '~> 1.7.2'
gem 'kitchen-vagrant', '~> 0.20', :require => false
gem 'kitchen-digitalocean', :require => false
gem 'kitchen-ec2', :require => false
gem 'kitchen-docker', :require => false
end
group :development do
gem 'guard', '~> 2.13'
# lock at ruby 2.1 for chefdk
gem 'listen', '~> 3.0.7', '<= 3.1.0'
gem 'guard-rubocop', '~> 1.2'
gem 'guard-foodcritic', '~> 2.1'
gem 'guard-kitchen', '~> 0.0'
gem 'guard-rspec', '~> 4.6'
gem 'rb-fsevent', require: false
gem 'rb-inotify', require: false
gem 'terminal-notifier-guard', require: false
gem 'psych', '~> 2.0.17'
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /mswin|mingw|cygwin/i
gem 'wdm', '>= 0.1.1'
gem 'win32console'
end
end