2018-09-06 08:29:14 +02:00
|
|
|
module Cask
|
2018-09-04 08:45:48 +01:00
|
|
|
class Cmd
|
2017-05-20 19:08:03 +02:00
|
|
|
class InternalHelp < AbstractInternalCommand
|
2017-05-21 00:15:56 +02:00
|
|
|
def initialize(*)
|
|
|
|
super
|
|
|
|
return if args.empty?
|
|
|
|
raise ArgumentError, "#{self.class.command_name} does not take arguments."
|
|
|
|
end
|
|
|
|
|
2017-05-20 03:07:37 +02:00
|
|
|
def run
|
2018-09-04 08:45:48 +01:00
|
|
|
max_command_len = Cmd.commands.map(&:length).max
|
2016-09-24 13:52:43 +02:00
|
|
|
puts "Unstable Internal-use Commands:\n\n"
|
2018-09-04 08:45:48 +01:00
|
|
|
Cmd.command_classes.each do |klass|
|
2016-09-24 13:52:43 +02:00
|
|
|
next if klass.visible
|
2017-05-20 03:07:37 +02:00
|
|
|
puts " #{klass.command_name.ljust(max_command_len)} #{self.class.help_for(klass)}"
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
|
|
|
puts "\n"
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
def self.help_for(klass)
|
|
|
|
klass.respond_to?(:help) ? klass.help : nil
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
def self.help
|
2017-01-23 01:16:07 +00:00
|
|
|
"print help strings for unstable internal-use commands"
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
end
|