summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitris Zorbas <zorbash@skroutz.gr>2015-10-03 18:41:39 +0300
committerDimitris Zorbas <zorbash@skroutz.gr>2015-10-03 18:41:39 +0300
commit42ab04281ae9091aa6abf3ffa03b8b6d1663c44b (patch)
treec7506a042be1cc132106210dc8d80b4b4c6c8e32
parent84811218d9bdddec6b792da6b7cf4d44fa70d223 (diff)
downloadbundler-42ab04281ae9091aa6abf3ffa03b8b6d1663c44b.tar.gz
Update binstubs command description for multiple gems
The current long description or the `binstubs` command does not provide any hint that it can accept multiple gems as arguments and generate binstubs for all of them. This commit enhances the description using similar phrasing for usage with multiple gem arguments, to the `outdated` command.
-rw-r--r--lib/bundler/cli.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index 5ddb6f12db..921cd1e68b 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -208,7 +208,8 @@ module Bundler
desc "binstubs GEM [OPTIONS]", "Install the binstubs of the listed gem"
long_desc <<-D
Generate binstubs for executables in [GEM]. Binstubs are put into bin,
- or the --binstubs directory if one has been set.
+ or the --binstubs directory if one has been set. Calling binstubs with [GEM [GEM]]
+ will create binstubs for all given gems.
D
method_option "force", :type => :boolean, :default => false, :banner =>
"Overwrite existing binstubs if they exist"