forked from dev-sec/chef-os-hardening
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (36 loc) · 828 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
# encoding: utf-8
source 'https://rubygems.org'
gem 'berkshelf', '~> 4.0'
gem 'chef', '>= 12.0'
gem 'inspec', '~> 0.9'
group :test do
gem 'rake'
gem 'chefspec', '~> 4.2.0'
gem 'foodcritic', '~> 4.0'
gem 'thor-foodcritic'
gem 'rubocop', '~> 0.28.0'
gem 'coveralls', require: false
gem 'bundler', '~> 1.5'
gem 'minitest', '~> 5.5'
gem 'simplecov', '~> 0.10'
end
group :development do
gem 'guard'
gem 'guard-rspec'
gem 'guard-kitchen'
gem 'guard-rubocop'
gem 'guard-foodcritic'
end
group :integration do
gem 'test-kitchen', '~> 1.0'
gem 'kitchen-vagrant'
gem 'kitchen-sharedtests', '~> 0.2.0'
gem 'kitchen-inspec', '~> 0.9'
gem 'concurrent-ruby', '~> 0.9'
end
group :openstack do
gem 'kitchen-openstack'
end
group :tools do
gem 'github_changelog_generator', '~> 1'
end