class Expedite::Cli::Stop

Public Instance Methods

run(args) click to toggle source
# File lib/expedite/cli/stop.rb, line 4
def run(args)
  require 'expedite/server'

  server = Expedite::Server.new
  server.stop
end
summary() click to toggle source
# File lib/expedite/cli/stop.rb, line 11
def summary
  'Stops the expedite server'
end