inspec/Gemfile

63 lines
1.3 KiB
Ruby
Raw Normal View History

# encoding: utf-8
source 'https://rubygems.org'
gemspec
2016-02-08 13:34:35 +00:00
# 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'
2016-09-22 19:26:19 +00:00
gem 'tins', '~> 1.6.0'
2016-02-08 13:34:35 +00:00
end
2016-08-26 07:53:25 +00:00
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
gem 'json', '~> 1.8'
2016-08-24 16:52:28 +00:00
gem 'rack', '< 2.0'
end
gem 'ffi', '>= 1.9.14'
group :test do
gem 'bundler', '~> 1.5'
gem 'minitest', '~> 5.5'
gem 'rake', '~> 10'
gem 'rubocop', '~> 0.36.0'
gem 'simplecov', '~> 0.10'
2015-10-25 22:14:19 +00:00
gem 'concurrent-ruby', '~> 0.9'
gem 'mocha', '~> 1.1'
2016-09-22 19:26:19 +00:00
gem 'ruby-progressbar', '~> 1.8'
gem 'inquirer'
gem 'nokogiri', '~> 1.6'
end
group :integration do
gem 'berkshelf', '~> 4.3'
2016-03-18 11:28:38 +00:00
gem 'test-kitchen', '~> 1.6'
gem 'kitchen-vagrant'
# we need winrm v2 support >= 0.15.1
gem 'kitchen-inspec', '>= 0.15.1'
2015-12-30 11:27:52 +00:00
gem 'kitchen-ec2'
2016-05-10 17:23:11 +00:00
gem 'kitchen-dokken'
end
group :simulator do
gem 'github-markup'
gem 'redcarpet'
gem 'docker-api'
end
group :tools do
gem 'pry', '~> 0.10'
2016-04-30 01:02:29 +00:00
gem 'rb-readline'
gem 'license_finder'
2015-11-20 21:23:25 +00:00
gem 'github_changelog_generator', '~> 1'
end
2015-10-30 16:02:18 +00:00
# gems for Maintainers.md generation
group :maintenance do
2015-10-30 16:02:18 +00:00
gem 'tomlrb'
# To sync maintainers with github
gem 'octokit'
gem 'netrc'
end