summaryrefslogtreecommitdiff
path: root/lib/bundler/cli.rb
diff options
context:
space:
mode:
authorAgrim Mittal <agrimmittal97@gmail.com>2018-06-17 15:17:21 +0530
committerAgrim Mittal <agrimmittal97@gmail.com>2018-06-28 15:35:17 +0530
commite0c0c4b696c64b42729173922703ab7e75163a8a (patch)
tree37ea5248aec2f7d028f7a43e968492442c490379 /lib/bundler/cli.rb
parentb8d0e5c1b0b55cf7cb34095fbc7ec0cd81d30126 (diff)
downloadbundler-e0c0c4b696c64b42729173922703ab7e75163a8a.tar.gz
Remove necessary comments and update documentation
Diffstat (limited to 'lib/bundler/cli.rb')
-rw-r--r--lib/bundler/cli.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index ef07889c50..0f19638e45 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -168,10 +168,10 @@ module Bundler
desc "remove [GEMS] [OPTIONS]", "Removes the gem from the Gemfile"
long_desc <<-D
- Removes the specified gems from the Gemfile in the current directory. If a gem is not found, Bundler prints a error message and if gem could not be removed due to any reason Bundler displays warning.
+ Removes the specified gems from the Gemfile. If the gem is not found, Bundler prints a error message and if gem could not be removed due to any reason Bundler will display a warning.
D
method_option "install", :type => :boolean, :banner =>
- "Runs 'bundle install' after removing the gems from the gemfile"
+ "Runs 'bundle install' after removing the gems from the Gemfile"
def remove(*gems)
require "bundler/cli/remove"
Remove.new(gems, options).run