summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2015-10-04 05:15:14 +0900
committerHomu <homu@barosl.com>2015-10-04 05:15:14 +0900
commit400f1a7f3ec0eeeecc5111d41872cbff474aa0f9 (patch)
tree74a88e6a128a34ed77487b74cd6bd6ad87097dc2
parenta72b9a5f4da47b0aa21720716760d1336edd8d32 (diff)
parent42ab04281ae9091aa6abf3ffa03b8b6d1663c44b (diff)
downloadbundler-400f1a7f3ec0eeeecc5111d41872cbff474aa0f9.tar.gz
Auto merge of #4031 - Zorbash:binstubs-description, r=segiddins
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 PR 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"