brew/Library/Homebrew/cask/lib/hbc/cli/abstract_internal_command.rb
2017-05-22 02:51:17 +02:00

14 lines
217 B
Ruby

module Hbc
class CLI
class AbstractInternalCommand < AbstractCommand
def self.command_name
super.sub(/^internal_/i, "_")
end
def self.visible
false
end
end
end
end