Class: Integer

Inherits:
Object
  • Object
show all
Defined in:
lib/background/worker_helpers.rb

Instance Method Summary collapse

Instance Method Details

#process_exists?Boolean

TODO:

Move to dmorrill10-utils

Returns:

  • (Boolean)


93
94
95
96
97
98
99
100
# File 'lib/background/worker_helpers.rb', line 93

def process_exists?
  begin
    Process.getpgid self
    true
  rescue Errno::ESRCH
    false
  end
end