forked from sous-chefs/firewall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (39 loc) · 771 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
source 'https://rubygems.org'
group :lint do
gem 'cookstyle', '~> 1.3'
gem 'foodcritic', '~> 10.3'
gem 'rubocop', '~> 0.47'
end
group :unit do
gem 'berkshelf', '~> 5.6'
gem 'chef', '>= 13'
gem 'chef-sugar'
gem 'chefspec'
end
group :kitchen_windows do
gem 'winrm', '~> 2.0'
gem 'winrm-fs', '~> 1.0'
end
group :kitchen_common do
gem 'test-kitchen', '~> 1.16'
end
group :kitchen_vagrant do
gem 'kitchen-vagrant', '~> 1.1'
gem 'vagrant-wrapper'
end
group :kitchen_cloud do
gem 'kitchen-digitalocean'
gem 'kitchen-ec2'
end
group :development do
gem 'growl'
gem 'guard'
gem 'guard-foodcritic'
gem 'guard-kitchen'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'rake', '~> 11.0'
gem 'rb-fsevent'
gem 'ruby_gntp'
gem 'stove'
end