inspec/Gemfile

47 lines
986 B
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'
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'
2015-10-25 22:14:19 +00:00
gem 'concurrent-ruby', '~> 0.9'
end
group :integration do
2015-10-21 20:52:41 +00:00
gem 'berkshelf', '~> 4.0'
2016-03-18 11:28:38 +00:00
gem 'test-kitchen', '~> 1.6'
gem 'kitchen-vagrant'
2016-03-18 11:28:38 +00:00
gem 'kitchen-inspec', '0.12.5'
2015-12-30 11:27:52 +00:00
gem 'kitchen-ec2'
2016-05-10 17:23:11 +00:00
gem 'kitchen-dokken'
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