-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (32 loc) · 732 Bytes
/
Gemfile
File metadata and controls
38 lines (32 loc) · 732 Bytes
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
# encoding: utf-8
source 'https://rubygems.org'
gem 'berkshelf', '~> 8.0'
gem 'chef', '>= 12.0'
gem 'inspec', '~> 7'
group :test do
gem 'rake'
gem 'chefspec', '~> 9.3.0'
gem 'foodcritic', '~> 16.0'
gem 'thor-foodcritic'
gem 'rubocop', '~> 1.85.0'
gem 'coveralls', require: false
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', '~> 3.0'
gem 'kitchen-vagrant'
gem 'kitchen-inspec'
gem 'concurrent-ruby', '~> 1.0'
gem 'kitchen-dokken'
end
group :tools do
gem 'github_changelog_generator', '~> 1.17.0'
end