mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
218 B
Ruby
14 lines
218 B
Ruby
module Cask
|
|
class Cmd
|
|
class AbstractInternalCommand < AbstractCommand
|
|
def self.command_name
|
|
super.sub(/^internal_/i, "_")
|
|
end
|
|
|
|
def self.visible
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|