mirror of
https://github.com/gosticks/brew.git
synced 2026-08-31 05:50:22 +00:00
16 lines
249 B
Ruby
16 lines
249 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Cask
|
|
class Cmd
|
|
class AbstractInternalCommand < AbstractCommand
|
|
def self.command_name
|
|
super.sub(/^internal_/i, "_")
|
|
end
|
|
|
|
def self.visible
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|