summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-20 14:07:07 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-30 10:00:53 +0100
commit9eaf3fdf5d8f1d75310309fe13a4e3892af1bb35 (patch)
tree8a8afc0a3dc4f60908bcc62784a82ce4b2b8c48a
parentd71290704ab2a83e475a413554a2268b1d95d9de (diff)
downloadbundler-9eaf3fdf5d8f1d75310309fe13a4e3892af1bb35.tar.gz
Normalize "list" alias with the rest of alias defs
Use a string when defining a single alias.
-rw-r--r--lib/bundler/cli.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index ea7998ae93..a771e8da3f 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -324,7 +324,7 @@ module Bundler
List.new(options).run
end
- map %w[ls] => "list"
+ map "ls" => "list"
desc "info GEM [OPTIONS]", "Show information for the given gem"
method_option "path", :type => :boolean, :banner => "Print full path to gem"