class Puma::Launcher

def delete_pidfile

Delete the configured pidfile
def delete_pidfile
  path = @options[:pidfile]
  File.unlink(path) if path && File.exist?(path)
end