forked from johnbellone/lockrun-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (37 loc) · 844 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'
gem 'poise', '~> 2.0'
gem 'poise-boiler'
group :lint do
gem 'rubocop'
end
group :kitchen_common do
gem 'test-kitchen', '~> 1.4'
end
group :kitchen_vagrant do
gem 'kitchen-vagrant', '~> 0.17'
end
group :kitchen_cloud do
gem 'kitchen-openstack', '~> 1.8'
end
group :unit do
gem 'berkshelf', git: 'https://github.com/berkshelf/berkshelf'
gem 'berkshelf-api-client', git: 'https://github.com/berkshelf/berkshelf-api-client'
gem 'faraday', git: 'https://github.com/lostisland/faraday'
gem 'ridley', git: 'https://github.com/johnbellone/ridley'
gem 'chefspec'
end
group :integration do
gem 'serverspec'
end
group :development do
gem 'awesome_print'
gem 'guard'
gem 'guard-kitchen'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'rake'
gem 'stove'
end
group :doc do
gem 'yard'
end