aboutsummaryrefslogtreecommitdiffstats
path: root/spec/other
diff options
context:
space:
mode:
authorTerence Lee <hone02@gmail.com>2012-12-28 21:53:08 -0500
committerTerence Lee <hone02@gmail.com>2012-12-28 21:53:08 -0500
commitc25993cb4d26392d39b3f08414f2406f2847a784 (patch)
tree91b67f6a70334073a199584282a0ff59786c2fe0 /spec/other
parentfd734f676ba1bf0e198d7ea948433f29f7dbca6e (diff)
downloadbundler-c25993cb4d26392d39b3f08414f2406f2847a784.tar.gz
change bundle binstubs --binstubs to --path
Diffstat (limited to 'spec/other')
-rw-r--r--spec/other/binstubs_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/other/binstubs_spec.rb b/spec/other/binstubs_spec.rb
index 8fcc7910..e80747a5 100644
--- a/spec/other/binstubs_spec.rb
+++ b/spec/other/binstubs_spec.rb
@@ -68,14 +68,14 @@ describe "bundle binstubs <gem>" do
end
end
- context "--binstubs" do
+ context "--path" do
it "sets the binstubs dir" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack"
G
- bundle "binstubs rack --binstubs exec"
+ bundle "binstubs rack --path exec"
expect(bundled_app("exec/rackup")).to exist
end
@@ -87,7 +87,7 @@ describe "bundle binstubs <gem>" do
gem "rails"
G
- bundle "binstubs rack --binstubs exec"
+ bundle "binstubs rack --path exec"
bundle :install
expect(bundled_app("exec/rails")).to exist