mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
13 lines
259 B
Ruby
13 lines
259 B
Ruby
class Cask::CLI::Base
|
|
def self.command_name
|
|
@command_name ||= self.name.sub(%r{^.*:}, '').gsub(%r{(.)([A-Z])}, '\1_\2').downcase
|
|
end
|
|
|
|
def self.visible
|
|
true
|
|
end
|
|
|
|
def self.help
|
|
"No help available for the #{command_name} command"
|
|
end
|
|
end
|