Class: Elasticshell::Commands::Exit

Inherits:
Elasticshell::Command show all
Defined in:
lib/elasticshell/commands/exit.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/exit.rb', line 5

def self.matches? input
  input =~ /^(quit|exit|bye)$/i
end

Instance Method Details

#evaluate!Object



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

def evaluate!
  exit(0)
end