mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
d9e0f8cb15
The artifactory gem is required for the publish part of the build stage. Signed-off-by: Jeremiah Snapp <jeremiah@chef.io>
25 lines
1 KiB
Ruby
25 lines
1 KiB
Ruby
source "https://rubygems.org"
|
|
|
|
gem "omnibus", git: "https://github.com/chef/omnibus", branch: "master"
|
|
gem "omnibus-software", git: "https://github.com/chef/omnibus-software", branch: "master"
|
|
gem "artifactory"
|
|
|
|
# This development group is installed by default when you run `bundle install`,
|
|
# but if you are using Omnibus in a CI-based infrastructure, you do not need
|
|
# the Test Kitchen-based build lab. You can skip these unnecessary dependencies
|
|
# by running `bundle install --without development` to speed up build times.
|
|
group :development do
|
|
# Use Berkshelf for resolving cookbook dependencies
|
|
gem "berkshelf", ">= 7.0"
|
|
|
|
# Use Test Kitchen with Vagrant for converging the build environment
|
|
gem "kitchen-vagrant", ">= 1.3.1"
|
|
gem "test-kitchen", ">= 1.23"
|
|
gem "winrm-fs", "~> 1.0"
|
|
end
|
|
|
|
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
|
|
|
|
# If you want to load debugging tools into the bundle exec sandbox,
|
|
# add these additional dependencies into Gemfile.local
|
|
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")
|