forked from 3ofcoins/chef-cookbook-ssl-key-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (38 loc) · 875 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
47
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
# Gemfile for ssl-vault Cookbook.
#
#
# Author:: Greg Albrecht <[email protected]>
# Copyright:: Copyright 2014 OnBeep, Inc.
# License:: The MIT License (MIT)
# Source:: https://github.com/onbeep-cookbooks/ssl-vault
#
source 'https://rubygems.org'
gem 'rake'
group :lint do
gem 'foodcritic', '~> 3.0'
gem 'rubocop', '~> 0.18'
gem 'rainbow', '< 2.0'
end
group :unit do
gem 'rspec', '2.14' # https://gist.github.com/jcarapet/9531009#comment-1249838
gem 'berkshelf', '~> 3.1'
gem 'chefspec', '~> 3.4'
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 'spothop'
end
group :integration do
gem 'serverspec', '~> 0.15'
gem 'thor-scmversion', '~> 1.4'
end