nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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".

+7 -10
+2 -3
pkgs/tools/misc/chef-cli/Gemfile
··· 1 - source 'https://rubygems.org' do 2 - gem "chef-cli" 3 - end 1 + source 'https://rubygems.org' 2 + gem "chef-cli"
+3 -4
pkgs/tools/misc/inspec/Gemfile
··· 1 - source 'https://rubygems.org' do 2 - gem "inspec" 3 - gem "inspec-bin" 4 - end 1 + source 'https://rubygems.org' 2 + gem "inspec" 3 + gem "inspec-bin"
+2 -3
pkgs/tools/misc/serverspec/Gemfile
··· 1 - source 'https://rubygems.org' do 2 - gem 'serverspec' 3 - end 1 + source 'https://rubygems.org' 2 + gem 'serverspec'