Class: Ardb::CLI::InvalidCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/ardb/cli/commands.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ InvalidCommand

Returns a new instance of InvalidCommand.



16
17
18
19
# File 'lib/ardb/cli/commands.rb', line 16

def initialize(name)
  @name  = name
  @clirb = CLIRB.new
end

Instance Attribute Details

#clirbObject (readonly)

Returns the value of attribute clirb.



14
15
16
# File 'lib/ardb/cli/commands.rb', line 14

def clirb
  @clirb
end

#nameObject (readonly)

Returns the value of attribute name.



14
15
16
# File 'lib/ardb/cli/commands.rb', line 14

def name
  @name
end

Instance Method Details

#command_helpObject



31
32
33
34
35
36
# File 'lib/ardb/cli/commands.rb', line 31

def command_help
  "Usage: ardb [COMMAND] [options]\n\n" \
  "Options: #{@clirb}\n" \
  "Commands:\n" \
  "#{COMMANDS.to_s.split("\n").map{ |l| "  #{l}" }.join("\n")}\n"
end

#newObject



21
22
23
# File 'lib/ardb/cli/commands.rb', line 21

def new
  self
end

#run(argv) ⇒ Object

Raises:



25
26
27
28
29
# File 'lib/ardb/cli/commands.rb', line 25

def run(argv)
  @clirb.parse!([@name, argv].flatten.compact)
  raise CLIRB::HelpExit if @name.to_s.empty?
  raise InvalidCommandError, "\"#{name}\" is not a command."
end