forked from dev-sec/chef-nginx-hardening
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
40 lines (34 loc) · 812 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
# encoding: utf-8
source 'https://rubygems.org'
gem 'berkshelf', '~> 6.1'
gem 'chef', '~> 12.5' # chefspec builds get stucked with 13.1
group :test do
gem 'rake'
gem 'chefspec', '~> 7.1.0'
gem 'foodcritic', '~> 11.1'
gem 'thor', '~> 0.19.1'
gem 'thor-foodcritic'
gem 'cookstyle'
gem 'coveralls', require: false
gem 'minitest', '~> 5.10.2'
gem 'rubocop', '~> 0.49.0'
gem 'simplecov', '~> 0.10'
end
group :development do
gem 'guard'
gem 'guard-rspec'
gem 'guard-foodcritic', '~> 3.0'
gem 'guard-kitchen'
gem 'guard-rubocop'
end
group :integration do
gem 'test-kitchen', '~> 1.20'
gem 'kitchen-vagrant'
gem 'kitchen-dokken'
gem 'kitchen-inspec'
gem 'kitchen-ec2'
gem 'concurrent-ruby', '~> 1.0.5'
end
group :tools do
gem 'github_changelog_generator', '~> 1.14'
end