inspec/Gemfile
2015-10-30 17:02:18 +01:00

35 lines
750 B
Ruby

# encoding: utf-8
source 'https://rubygems.org'
gemspec
gem 'train', git: 'git@github.com:chef/train.git'
group :test do
gem 'bundler', '~> 1.5'
gem 'minitest', '~> 5.5'
gem 'rake', '~> 10'
gem 'rubocop', '~> 0.33.0'
gem 'simplecov', '~> 0.10'
gem 'concurrent-ruby', '~> 0.9'
end
group :integration do
gem 'berkshelf', '~> 4.0'
gem 'test-kitchen', git: 'https://github.com/chris-rock/test-kitchen', branch: 'test-path'
gem 'kitchen-vagrant'
gem 'kitchen-inspec', git: 'git@github.com:chef/kitchen-inspec.git'
end
group :tools do
gem 'pry', '~> 0.10'
gem 'license_finder'
end
# gems for Maintainers.md generation
group(:maintenance) do
gem 'tomlrb'
# To sync maintainers with github
gem 'octokit'
gem 'netrc'
end