summaryrefslogtreecommitdiff
path: root/spec/install/global_cache_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/install/global_cache_spec.rb')
-rw-r--r--spec/install/global_cache_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/install/global_cache_spec.rb b/spec/install/global_cache_spec.rb
index e1f5a3074a..345ad86db8 100644
--- a/spec/install/global_cache_spec.rb
+++ b/spec/install/global_cache_spec.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
RSpec.describe "global gem caching" do
- before { bundle! "config global_gem_cache true" }
+ before { bundle! "config set global_gem_cache true" }
describe "using the cross-application user cache" do
let(:source) { "http://localgemserver.test" }
@@ -220,7 +220,7 @@ RSpec.describe "global gem caching" do
gem_binary_cache.join("very_simple_binary_c.rb").open("w") {|f| f << "puts File.basename(__FILE__)" }
git_binary_cache.join("very_simple_git_binary_c.rb").open("w") {|f| f << "puts File.basename(__FILE__)" }
- bundle! "config --local path different_path"
+ bundle! "config set --local path different_path"
bundle! :install
expect(Dir[home(".bundle", "cache", "extensions", "**", "*binary_c*")]).to all(end_with(".rb"))