summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/bundler/cli.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index 69bb5f0ac3..0386bb25ac 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -603,7 +603,12 @@ module Bundler
Issue.new.run
end
- desc "pristine [GEMS...]", "Restores installed gems to pristine condition from files located in the gem cache. Gem installed from a git repository will be issued `git checkout --force`."
+ desc "pristine [GEMS...]", "Restores installed gems to pristine condition"
+ long_desc <<-D
+ Restores installed gems to pristine condition from files located in the
+ gem cache. Gems installed from a git repository will be issued `git
+ checkout --force`.
+ D
def pristine(*gems)
require "bundler/cli/pristine"
Pristine.new(gems).run