Class: HelpCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/woodstove/helpcommand.rb

Overview

woodstove helpcommand - help command for woodstove Copyright © 2016 the furry entertainment project Licensed under the MIT license.

Instance Method Summary collapse

Constructor Details

#initialize(cmd) ⇒ HelpCommand



6
7
8
# File 'lib/woodstove/helpcommand.rb', line 6

def initialize cmd
  @cmd = cmd
end

Instance Method Details

#cmdify(command) ⇒ Object

Produce a formatted command string for the given command.



16
17
18
19
# File 'lib/woodstove/helpcommand.rb', line 16

def cmdify command
  optprefix = command.opts != '' ? ' ' + command.opts : ''
  "#{command.long}, #{command.short}#{optprefix}"
end

#incorrect_usageObject



40
41
42
43
# File 'lib/woodstove/helpcommand.rb', line 40

def incorrect_usage
  usage
  puts "For more information: `#{@cmd} help`"
end

#infoObject



13
# File 'lib/woodstove/helpcommand.rb', line 13

def info; 'Prints help information.'; end

#longObject



10
# File 'lib/woodstove/helpcommand.rb', line 10

def long; 'help'; end

#optsObject



12
# File 'lib/woodstove/helpcommand.rb', line 12

def opts; ''; end

#run(args) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/woodstove/helpcommand.rb', line 20

def run args
  usage

  # Get the length of the longest command string, so that we can pad the
  # information in the output.
  max_length = 0
  $argmanager.commands.each do |command|
    max_length = [max_length, cmdify(command[1]).length].max
  end

  # Print each command's information, with padding after the command string.
  puts "\nOptions:"
  $argmanager.commands.each do |command|
    padded = "%-#{max_length}s" % cmdify(command[1])
    puts "  #{padded} - #{command[1].info}"
  end
end

#shortObject



11
# File 'lib/woodstove/helpcommand.rb', line 11

def short; 'h'; end

#usageObject



37
38
39
# File 'lib/woodstove/helpcommand.rb', line 37

def usage
  puts "Usage: #{@cmd} [command] [options]"
end