class Commands::Quit

Quit command.

Public Class Methods

command_name() click to toggle source
# File lib/gdsh/quit.rb, line 8
def self.command_name
  'quit'
end
function() click to toggle source
# File lib/gdsh/quit.rb, line 12
def self.function
  'Exit the application.'
end
terminal?() click to toggle source
# File lib/gdsh/quit.rb, line 16
def self.terminal?
  true
end

Public Instance Methods

execute() click to toggle source
# File lib/gdsh/quit.rb, line 20
def execute
end