forked from chef-boneyard/build-essential
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (32 loc) · 732 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
source 'https://rubygems.org'
group :lint do
gem 'foodcritic', '~> 3.0'
gem 'rubocop', '~> 0.18'
end
group :unit do
gem 'berkshelf', '~> 3.0.0.beta'
gem 'chefspec', '~> 3.3'
end
group :kitchen_common do
gem 'test-kitchen', '~> 1.2'
end
group :kitchen_vagrant do
gem 'kitchen-vagrant', '~> 0.14'
end
group :kitchen_cloud do
gem 'kitchen-digitalocean'
gem 'kitchen-ec2'
gem 'kitchen-joyent'
gem 'kitchen-gce', :git => 'git://github.com/someara/kitchen-gce.git', :branch => 'authorized_ssh_keys'
end
group :development do
gem 'ruby_gntp'
gem 'growl'
gem 'rb-fsevent'
gem 'guard', '~> 2.4'
gem 'guard-kitchen'
gem 'guard-foodcritic'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'rake'
end