forked from rabbitmq/chef-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (37 loc) · 627 Bytes
/
Gemfile
File metadata and controls
45 lines (37 loc) · 627 Bytes
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
source 'https://rubygems.org'
gem 'chef'
gem 'chefspec'
group :lint do
gem 'foodcritic'
gem 'rubocop'
gem 'rainbow'
end
group :unit do
gem 'berkshelf'
gem 'fauxhai'
end
group :kitchen_common do
gem 'test-kitchen'
end
group :kitchen_vagrant do
gem 'kitchen-vagrant'
end
group :kitchen_docker do
gem 'kitchen-docker'
end
group :kitchen_cloud do
gem 'kitchen-digitalocean'
gem 'kitchen-ec2'
end
group :development do
gem 'ruby_gntp'
gem 'growl'
gem 'rb-fsevent'
gem 'guard'
gem 'guard-kitchen'
gem 'guard-foodcritic'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'rake'
gem 'stove'
end