2015-09-18 08:06:11 +02:00
|
|
|
# encoding: utf-8
|
2015-06-18 23:54:02 +02:00
|
|
|
source 'https://rubygems.org'
|
2019-01-08 14:13:23 -08:00
|
|
|
|
2019-03-01 17:39:39 -08:00
|
|
|
gem 'inspec', path: '.'
|
2019-04-29 19:37:55 -04:00
|
|
|
|
|
|
|
# This dependency is NOT used for normal gem deployment
|
|
|
|
# - instead, inspec-bin gemspec-depends on inspec
|
|
|
|
#
|
|
|
|
# However, AppBundler requires a top-level Gemfile.lock with inspec-bin
|
|
|
|
# in it in order to package the executable. Hence the odd backwards dependency.
|
2019-04-29 13:10:25 -06:00
|
|
|
gem 'inspec-bin', path: './inspec-bin'
|
2015-06-19 15:06:13 +02:00
|
|
|
|
2016-08-25 14:04:09 -04:00
|
|
|
gem 'ffi', '>= 1.9.14'
|
2016-07-06 02:41:01 +02:00
|
|
|
|
2019-03-01 17:39:39 -08:00
|
|
|
group :omnibus do
|
|
|
|
gem 'rb-readline'
|
|
|
|
gem 'appbundler'
|
2019-04-22 17:34:32 -07:00
|
|
|
gem 'ed25519' # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
|
|
|
|
gem 'bcrypt_pbkdf' # ed25519 ssh key support done here as its a native gem we can't put in the gemspec
|
2019-03-01 17:39:39 -08:00
|
|
|
end
|
|
|
|
|
2015-09-18 22:51:18 +02:00
|
|
|
group :test do
|
|
|
|
gem 'minitest', '~> 5.5'
|
2017-12-07 07:50:53 -05:00
|
|
|
gem 'rake', '>= 10'
|
2017-11-21 02:49:41 -05:00
|
|
|
gem 'rubocop', '= 0.49.1'
|
2015-09-18 22:51:18 +02:00
|
|
|
gem 'simplecov', '~> 0.10'
|
2018-02-06 13:40:21 -05:00
|
|
|
gem 'concurrent-ruby', '~> 1.0'
|
2016-08-16 06:14:36 -07:00
|
|
|
gem 'mocha', '~> 1.1'
|
2016-09-22 21:26:19 +02:00
|
|
|
gem 'ruby-progressbar', '~> 1.8'
|
2019-04-11 13:40:18 -07:00
|
|
|
gem 'webmock', '~> 3.0'
|
2017-03-14 16:50:10 +01:00
|
|
|
gem 'jsonschema', '~> 2.0.2'
|
2018-02-06 13:40:21 -05:00
|
|
|
gem 'passgen'
|
2017-05-01 18:18:23 -05:00
|
|
|
gem 'm'
|
2018-03-28 08:23:06 -07:00
|
|
|
gem 'pry-byebug'
|
2015-09-18 22:51:18 +02:00
|
|
|
end
|
2015-09-18 08:06:11 +02:00
|
|
|
|
|
|
|
group :integration do
|
2019-04-16 21:19:40 -07:00
|
|
|
gem 'berkshelf', '~> 7'
|
2019-01-14 10:50:47 -08:00
|
|
|
gem 'test-kitchen', '>= 1.24'
|
2015-09-18 08:06:11 +02:00
|
|
|
gem 'kitchen-vagrant'
|
2016-09-04 19:32:18 +02:00
|
|
|
# we need winrm v2 support >= 0.15.1
|
|
|
|
gem 'kitchen-inspec', '>= 0.15.1'
|
2015-12-30 12:27:52 +01:00
|
|
|
gem 'kitchen-ec2'
|
2016-05-10 19:23:11 +02:00
|
|
|
gem 'kitchen-dokken'
|
2015-09-18 22:51:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :tools do
|
|
|
|
gem 'pry', '~> 0.10'
|
|
|
|
gem 'license_finder'
|
2018-08-02 11:43:46 -04:00
|
|
|
gem 'git', '~> 1.4'
|
2015-09-18 08:06:11 +02:00
|
|
|
end
|
2015-10-30 17:02:18 +01:00
|
|
|
|
|
|
|
# gems for Maintainers.md generation
|
2015-10-30 17:30:44 +01:00
|
|
|
group :maintenance do
|
2015-10-30 17:02:18 +01:00
|
|
|
gem 'tomlrb'
|
|
|
|
|
|
|
|
# To sync maintainers with github
|
|
|
|
gem 'octokit'
|
|
|
|
gem 'netrc'
|
|
|
|
end
|
2016-09-27 14:00:01 -04:00
|
|
|
|
|
|
|
group :deploy do
|
|
|
|
gem 'inquirer'
|
|
|
|
end
|