method

find_processes

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: Killer
find_processes() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/commands/process/reaper.rb, line 73
    def find_processes
      files = pid_files
      if files.empty?
        find_processes_via_grep
      else
        files.collect { |pid_file| File.read(pid_file).to_i }
      end
    end
Register or log in to add new notes.