mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
11 lines
227 B
Ruby
11 lines
227 B
Ruby
module Hbc
|
|
def self.full_version
|
|
@full_version ||= begin
|
|
<<~EOS
|
|
Homebrew-Cask #{HOMEBREW_VERSION}
|
|
#{Tap.default_cask_tap.full_name} #{Tap.default_cask_tap.version_string}
|
|
EOS
|
|
end
|
|
end
|
|
end
|