mirror of
https://github.com/gosticks/brew.git
synced 2026-08-31 22:10:20 +00: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
|