brew/Library/Homebrew/cask/cmd/abstract_internal_command.rb
2018-09-06 09:30:52 +02:00

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