summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaverio Miroddi <saverio.pub2@gmail.com>2018-04-21 20:25:00 +0200
committerSaverio Miroddi <saverio.pub2@gmail.com>2018-04-21 20:25:00 +0200
commitf8049f512762ad5bb658e1137b6ce2b86a6f8e9a (patch)
tree2903b4738678922fc2621d9e1ce3914be98dc12a
parent4f6367f764d9da25c2f0ed92a3267d28ea8f2a08 (diff)
downloadbundler-saveriomiroddi-sav-install_plugin_from_file_support.tar.gz
Improve Cli::Plugin help, according to review notesaveriomiroddi-sav-install_plugin_from_file_support
See https://github.com/bundler/bundler/pull/6338#discussion_r183209481.
-rw-r--r--lib/bundler/cli/plugin.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/plugin.rb b/lib/bundler/cli/plugin.rb
index f0cbb15a4f..b5dd5b6d4b 100644
--- a/lib/bundler/cli/plugin.rb
+++ b/lib/bundler/cli/plugin.rb
@@ -5,7 +5,7 @@ module Bundler
class CLI::Plugin < Thor
desc "install PLUGINS", "Install the plugin from the source"
long_desc <<-D
- Install plugins either from the rubygems source provided (with --source option) or from a remote/git source provided (with respectively --git and --local_git options). If no sources are provided, it uses Gem.sources
+ Install plugins either from the rubygems source provided (with --source option) or from a git source provided with --git (for remote repos) or --local_git (for local repos). If no sources are provided, it uses Gem.sources
D
method_option "source", :type => :string, :default => nil, :banner =>
"URL of the RubyGems source to fetch the plugin from"