forked from rosstimson/chef-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
30 lines (27 loc) · 775 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
source 'https://rubygems.org'
gem 'berkshelf', '> 3'
# Uncomment these lines if you want to live on the Edge:
#
# group :development do
# gem "berkshelf", github: "berkshelf/berkshelf"
# gem "vagrant", github: "mitchellh/vagrant", tag: "v1.6.3"
# end
#
# group :plugins do
# gem "vagrant-berkshelf", github: "berkshelf/vagrant-berkshelf"
# gem "vagrant-omnibus", github: "schisamo/vagrant-omnibus"
# end
gem 'chef', '>= 11.8'
gem 'rake', '>= 10.2'
gem 'rubocop', '= 0.23'
gem 'foodcritic', '>= 3.0'
gem 'chefspec', '>= 3.4'
gem 'serverspec', '>= 1.6'
gem 'test-kitchen'
gem 'kitchen-vagrant'
gem 'kitchen-ec2'
gem 'unf' #Stop Fog (used by kitchen-ec2) complaining.
gem 'guard', '>= 2.6'
gem 'guard-rubocop', '>= 1.1'
gem 'guard-foodcritic', '>= 1.0.2'
gem 'stove'