mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
move integration dependencies to Gemfile, add kitchen-vagrant as dependency
This commit is contained in:
parent
29e2ea9fd1
commit
e0458dd4a0
2 changed files with 7 additions and 2 deletions
8
Gemfile
8
Gemfile
|
@ -1,5 +1,11 @@
|
|||
# encoding: utf-8
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gemspec
|
||||
|
||||
gem 'license_finder', :group => :development
|
||||
gem 'license_finder', group: 'development'
|
||||
|
||||
group :integration do
|
||||
gem 'test-kitchen', '~> 1.4'
|
||||
gem 'kitchen-vagrant'
|
||||
end
|
||||
|
|
|
@ -25,7 +25,6 @@ Gem::Specification.new do |spec|
|
|||
spec.add_development_dependency 'rubocop', '~> 0.33.0'
|
||||
spec.add_development_dependency 'simplecov', '~> 0.10'
|
||||
spec.add_development_dependency 'concurrent-ruby', '~> 0.9'
|
||||
spec.add_development_dependency 'test-kitchen', '~> 1.4'
|
||||
|
||||
spec.add_dependency 'thor', '~> 0.19'
|
||||
spec.add_dependency 'json', '~> 1.8'
|
||||
|
|
Loading…
Reference in a new issue