mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
d77551baf1
The pinned version of Rubocop in some of the TK examples' Gemfiles was a very old version with known vulnerabilities. Since these are just examples and have no Rake tasks that rely on them, I removed rubocop outright from the example Gemfiles. Signed-off-by: Adam Leff <adam@leff.co>
20 lines
390 B
Ruby
20 lines
390 B
Ruby
# encoding: utf-8
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'inspec', path: '../../.'
|
|
|
|
group :test do
|
|
gem 'bundler', '~> 1.5'
|
|
gem 'minitest', '~> 5.5'
|
|
gem 'rake', '~> 10'
|
|
gem 'simplecov', '~> 0.10'
|
|
end
|
|
|
|
group :integration do
|
|
gem 'test-kitchen', '~> 1.4'
|
|
gem 'kitchen-vagrant'
|
|
gem 'kitchen-puppet'
|
|
gem 'librarian-puppet'
|
|
gem 'kitchen-inspec'
|
|
gem 'concurrent-ruby', '~> 0.9'
|
|
end
|