inspec/Gemfile
2016-08-24 11:16:43 +02:00

51 lines
1.1 KiB
Ruby

# encoding: utf-8
source 'https://rubygems.org'
gemspec
# pin dependency for Ruby 1.9.3 since bundler is not
# detecting that net-ssh 3 does not work with 1.9.3
if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3')
gem 'net-ssh', '~> 2.9'
end
if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('2.1.0')
gem 'json', '~> 1.8'
end
# TODO: ffi 1.9.11 is currently erroneous on windows tests
gem 'ffi', '= 1.9.10'
group :test do
gem 'bundler', '~> 1.5'
gem 'minitest', '~> 5.5'
gem 'rake', '~> 10'
gem 'rubocop', '~> 0.36.0'
gem 'simplecov', '~> 0.10'
gem 'concurrent-ruby', '~> 0.9'
gem 'mocha', '~> 1.1'
end
group :integration do
gem 'berkshelf', '~> 4.3'
gem 'test-kitchen', '~> 1.6'
gem 'kitchen-vagrant'
gem 'kitchen-inspec', '0.12.5'
gem 'kitchen-ec2'
gem 'kitchen-dokken'
end
group :tools do
gem 'pry', '~> 0.10'
gem 'rb-readline'
gem 'license_finder'
gem 'github_changelog_generator', '~> 1'
end
# gems for Maintainers.md generation
group :maintenance do
gem 'tomlrb'
# To sync maintainers with github
gem 'octokit'
gem 'netrc'
end