move integration dependencies to Gemfile, add kitchen-vagrant as dependency

This commit is contained in:
Christoph Hartmann 2015-09-18 08:06:11 +02:00 committed by Dominik Richter
parent 29e2ea9fd1
commit e0458dd4a0
2 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -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'