Method: God::CLI::Command#quit_command

Defined in:
lib/god/cli/command.rb

#quit_commandObject



133
134
135
136
137
138
139
140
# File 'lib/god/cli/command.rb', line 133

def quit_command
  begin
    @server.terminate
    abort 'Could not stop god'
  rescue DRb::DRbConnError
    puts 'Stopped god'
  end
end