Class: Elasticshell::Commands::Unknown

Inherits:
Elasticshell::Command show all
Defined in:
lib/elasticshell/commands/unknown.rb

Instance Attribute Summary

Attributes inherited from Elasticshell::Command

#input, #shell

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Elasticshell::Command

#be_connected!, #initialize

Constructor Details

This class inherits a constructor from Elasticshell::Command

Class Method Details

.matches?(input) ⇒ Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/elasticshell/commands/unknown.rb', line 5

def self.matches? input
  true
end

Instance Method Details

#evaluate!Object

Raises:



9
10
11
# File 'lib/elasticshell/commands/unknown.rb', line 9

def evaluate!
  raise ArgumentError.new("Invalid command: '#{shell.input}' for scope '#{shell.scope.path}'.  Try typing 'help' for a list of available commands.")
end