class Epi::Daemon::Responders::Start

Public Instance Methods

run() click to toggle source
# File lib/epi/daemon/responders/start.rb, line 7
def run
  count = Jobs.running_process_count
  if count == 0
    'Starting ...'
  else
    "Starting #{count} process#{count == 1 ? '' : 'es'} ..."
  end
end