forked from Sous-Chefs-Boneyard/sysctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (32 loc) · 933 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 'https://rubygems.org'
gem 'berkshelf', '~> 3.2.0'
group :unit do
gem 'foodcritic', '~> 4.0'
gem 'rubocop', '~> 0.28', '>= 0.28.0'
gem 'chefspec', '~> 4.2'
end
group :integration do
gem 'test-kitchen', '~> 1.3.1'
gem 'kitchen-vagrant', :require => false
gem 'kitchen-digitalocean', :require => false
gem 'kitchen-ec2', :require => false
end
group :release do
gem 'rspec_junit_formatter'
gem 'rubocop-checkstyle_formatter'
end
group :development do
gem 'guard', '~> 2.11.1'
gem 'guard-rubocop', '~> 1.2.0'
gem 'guard-foodcritic', '~> 1.0.3'
gem 'guard-kitchen', '~> 0.0.2'
gem 'guard-rspec', '~> 4.5.0'
gem 'rb-fsevent', :require => false
gem 'rb-inotify', :require => false
gem 'terminal-notifier-guard', :require => false
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /mswin|mingw|cygwin/i
gem 'wdm', '>= 0.1.0'
gem 'win32console'
end
end