chef-cli, inspec, serverspec: Fix Gemfile deprecation warnings
This resolves the following warning in these packages: [DEPRECATED] This Gemfile does not include an explicit global source. Not using an explicit global source may result in a different lockfile being generated depending on the gems you have installed locally before bundler is run. Instead, define a global source in your Gemfile like this: source "https://rubygems.org".
This commit is contained in:
parent
ae55ff1d1b
commit
30f26d070d
3 changed files with 7 additions and 10 deletions
|
@ -1,3 +1,2 @@
|
|||
source 'https://rubygems.org' do
|
||||
gem "chef-cli"
|
||||
end
|
||||
source 'https://rubygems.org'
|
||||
gem "chef-cli"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
source 'https://rubygems.org' do
|
||||
gem "inspec"
|
||||
gem "inspec-bin"
|
||||
end
|
||||
source 'https://rubygems.org'
|
||||
gem "inspec"
|
||||
gem "inspec-bin"
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
source 'https://rubygems.org' do
|
||||
gem 'serverspec'
|
||||
end
|
||||
source 'https://rubygems.org'
|
||||
gem 'serverspec'
|
||||
|
|
Loading…
Reference in a new issue