method
    
    process
 
  process(action)
  public
  
    Hide source    
    
      
  
# File railties/lib/commands/process/reaper.rb, line 52 def process(action) pids = find_processes if pids.empty? warn "Couldn't find any pid file in '#{@pid_path}' matching '#{@pattern}'" warn "(also looked for processes matching #{@keyword.inspect})" if @keyword else pids.each do |pid| puts "#{action.capitalize}ing #{pid}" self.class.send(action, pid) end delete_pid_files if terminating?(action) end end

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
   
    
     = protected
 = protected
  