mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
d42dfa956c
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
source "https://rubygems.org"
|
|
|
|
gem "inspec", path: "."
|
|
|
|
# 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.
|
|
gem "inspec-bin", path: "./inspec-bin"
|
|
|
|
gem "ffi", ">= 1.9.14", "!= 1.13.0"
|
|
|
|
if Gem.ruby_version.to_s.start_with?("2.5")
|
|
# 16.7.23 required ruby 2.6+
|
|
gem "chef-utils", "< 16.7.23" # TODO: remove when we drop ruby 2.5
|
|
end
|
|
|
|
group :omnibus do
|
|
gem "rb-readline"
|
|
gem "appbundler"
|
|
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
|
|
end
|
|
|
|
group :test do
|
|
gem "chefstyle", "~> 1.2.1"
|
|
gem "concurrent-ruby", "~> 1.0"
|
|
gem "html-proofer", platforms: :ruby # do not attempt to run proofer on windows
|
|
gem "json_schemer", ">= 0.2.1", "< 0.2.12"
|
|
gem "m"
|
|
gem "minitest-sprint", "~> 1.0"
|
|
gem "minitest", "~> 5.5"
|
|
gem "mocha", "~> 1.1"
|
|
gem "nokogiri", "~> 1.9"
|
|
gem "pry-byebug"
|
|
gem "pry", "~> 0.10"
|
|
gem "rake", ">= 10"
|
|
gem "ruby-progressbar", "~> 1.8"
|
|
gem "simplecov", ["~> 0.10", "<=0.18.2"]
|
|
gem "webmock", "~> 3.0"
|
|
end
|
|
|
|
group :deploy do
|
|
gem "inquirer"
|
|
end
|