10 lines
155 B
Ruby
10 lines
155 B
Ruby
![]() |
class Hbc::CLI::InternalUseBase < Hbc::CLI::Base
|
||
|
def self.command_name
|
||
|
super.sub(%r{^internal_}i, "_")
|
||
|
end
|
||
|
|
||
|
def self.visible
|
||
|
false
|
||
|
end
|
||
|
end
|