singleton_process ensures that a given process (script, rake task, method, etc) is only running once.
Helpful for ensure that scheduled tasks do not overlap if they run longer than the scheduled interval. Uses a locked PID file to prevent issues with PID reuse.