Class: Commands::Quit
Overview
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
#initialize
Methods included from DriveError
#drive_error_string
included
Class Method Details
.command_name ⇒ Object
8
9
10
|
# File 'lib/gdsh/quit.rb', line 8
def self.command_name
'quit'
end
|
.function ⇒ Object
12
13
14
|
# File 'lib/gdsh/quit.rb', line 12
def self.function
'Exit the application.'
end
|
.terminal? ⇒ Boolean
16
17
18
|
# File 'lib/gdsh/quit.rb', line 16
def self.terminal?
true
end
|
Instance Method Details
#execute ⇒ Object
20
21
|
# File 'lib/gdsh/quit.rb', line 20
def execute
end
|