2024-01-19 09:55:29 +00:00
# TODO: Commentine artifactory source block temporarily
# to addres JIRA #9390 (Chef InSpec Verify pipeline is failing due to checksum mismatch of mixlib-shellout gem)
2023-08-17 21:45:12 +00:00
# For Chef internal builds, allows preview versions of gems if available.
2024-01-19 09:55:29 +00:00
# if ENV["ARTIFACTORY_BASE_URL"]
# source ENV["ARTIFACTORY_BASE_URL"] + "/artifactory/api/gems/omnibus-gems-local/" do
# # TODO: either fully populate this list, or revert back to non-block format
# # to sweep all Chef gems from Artifactory.
# gem "chef-licensing"
# end
# end
2023-08-17 21:45:12 +00:00
2019-06-11 22:24:35 +00:00
source " https://rubygems.org "
2019-01-08 22:13:23 +00:00
2019-06-11 22:24:35 +00:00
gem " inspec " , path : " . "
2019-04-29 23:37:55 +00: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-06-11 22:24:35 +00:00
gem " inspec-bin " , path : " ./inspec-bin "
2015-06-19 13:06:13 +00:00
2024-06-06 07:19:27 +00:00
# ffi version v1.17.0 is breaking verify pipeline as it requires
# rubygems version to be upgraded to >= 3.3.22 Ref:https://buildkite.com/chef/inspec-inspec-main-verify-private/builds/812#018fe177-2ccb-45ed-a25e-213c8a6453df/698-707
gem " ffi " , " >= 1.15.5 " , " < 1.17.0 "
2016-07-06 00:41:01 +00:00
2021-01-12 21:51:17 +00:00
# inspec tests depend text output that changed in the 3.10 release
# but our runtime dep is still 3.9+
gem " rspec " , " >= 3.10 "
2019-03-02 01:39:39 +00:00
group :omnibus do
2019-06-11 22:24:35 +00:00
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
2019-03-02 01:39:39 +00:00
end
2015-09-18 20:51:18 +00:00
group :test do
2023-12-13 09:37:57 +00:00
gem " chefstyle "
gem " concurrent-ruby "
gem " json_schemer "
2020-12-01 22:17:12 +00:00
gem " m "
gem " minitest-sprint " , " ~> 1.0 "
2022-06-27 15:37:30 +00:00
gem " minitest " , " 5.15.0 "
2023-12-13 09:37:57 +00:00
gem " mocha "
gem " nokogiri "
2020-12-01 22:17:12 +00:00
gem " pry-byebug "
2023-12-13 09:37:57 +00:00
gem " pry "
gem " rake "
gem " simplecov "
2022-02-07 03:09:38 +00:00
gem " simplecov_json_formatter "
2023-12-13 09:37:57 +00:00
gem " webmock "
2015-09-18 20:51:18 +00:00
end
2015-09-18 06:06:11 +00:00
2016-09-27 18:00:01 +00:00
group :deploy do
2019-06-11 22:24:35 +00:00
gem " inquirer "
2020-12-10 16:40:03 +00:00
end