summaryrefslogtreecommitdiff
path: root/lib/bundler/cli.rb
diff options
context:
space:
mode:
authorharuuzion <haruuzion@users.noreply.github.com>2021-10-08 01:08:57 +0900
committergit <svn-admin@ruby-lang.org>2021-11-06 01:39:24 +0900
commit82ae9b092cf51062c49b95e81ad184e1dea0df1e (patch)
tree4d28b98aec4402e3367337e6845f64d103a8e919 /lib/bundler/cli.rb
parentf1ca64ed7ca746fa2c547f1e2642aed37ed57f12 (diff)
[rubygems/rubygems] Fix url
https://github.com/rubygems/rubygems/commit/6a5a80eff7
Diffstat (limited to 'lib/bundler/cli.rb')
-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 d5de72e5d4..517dfb098e 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -552,7 +552,7 @@ module Bundler
method_option :version, :type => :boolean, :default => false, :aliases => "-v", :desc => "Set to show each gem version."
method_option :without, :type => :array, :default => [], :aliases => "-W", :banner => "GROUP[ GROUP...]", :desc => "Exclude gems that are part of the specified named group."
def viz
- SharedHelpers.major_deprecation 2, "The `viz` command has been moved to the `bundle-viz` gem, see https://github.com/bundler/bundler-viz"
+ SharedHelpers.major_deprecation 2, "The `viz` command has been moved to the `bundle-viz` gem, see https://github.com/rubygems/bundler-viz"
require_relative "cli/viz"
Viz.new(options.dup).run
end