aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/cli/abstract_internal_command.rb
blob: 8af71e58959fb69beff748e20b57b7a84af73d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Hbc
  class CLI
    class AbstractInternalCommand < AbstractCommand
      def self.command_name
        super.sub(/^internal_/i, "_")
      end

      def self.visible
        false
      end
    end
  end
end