Skip to content

Instantly share code, notes, and snippets.

@charger
Created October 2, 2018 12:17
Show Gist options
  • Save charger/1d361bc1645ee4d245df44985100506c to your computer and use it in GitHub Desktop.
Save charger/1d361bc1645ee4d245df44985100506c to your computer and use it in GitHub Desktop.
#/spec/support/the_service.rb
class TheServiceControl
#....
def stop
return if @pid.nil?
print "Stopping TheService (PID: #{@pid}). "
Process.kill("KILL", -Process.getpgid(@pid))
res = Process.wait
@pid = nil
puts "Stopped. #{res}"
end
#....
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment