22 lines
401 B
Ruby
Raw Normal View History

2023-08-08 13:54:59 -07:00
# typed: strict
2022-09-11 22:10:37 -05:00
# frozen_string_literal: true
2024-03-29 18:19:17 -07:00
require "abstract_command"
2022-09-11 22:10:37 -05:00
module Homebrew
2024-03-29 18:19:17 -07:00
module Cmd
class Docs < AbstractCommand
cmd_args do
description <<~EOS
Open Homebrew's online documentation at <#{HOMEBREW_DOCS_WWW}> in a browser.
EOS
end
2022-09-11 22:10:37 -05:00
2024-03-29 18:19:17 -07:00
sig { override.void }
def run
exec_browser HOMEBREW_DOCS_WWW
end
2022-09-11 22:10:37 -05:00
end
end
end