inspec/omnibus/Gemfile
Tim Smith 0402883cfb Remove the instance_eval and eval_gemfile calls in omnibus
Dependabot won't work with these and they're not being used anyways.

Signed-off-by: Tim Smith <tsmith@chef.io>
2021-11-18 20:54:23 -08:00

21 lines
No EOL
968 B
Ruby

source "https://rubygems.org"
gem "omnibus", github: ENV.fetch("OMNIBUS_GITHUB_REPO", "chef/omnibus"), branch: ENV.fetch("OMNIBUS_GITHUB_BRANCH", "main")
gem "omnibus-software", github: ENV.fetch("OMNIBUS_SOFTWARE_GITHUB_REPO", "chef/omnibus-software"), branch: ENV.fetch("OMNIBUS_SOFTWARE_GITHUB_BRANCH", "main")
gem "artifactory"
gem "ffi", ">= 1.9.14", "!= 1.13.0"
# 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 config set --local 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