#No such file to load -- devise/confirmations_controller #resque worker devise not eager loading require File.expand_path('../config/application', __FILE__) require 'rake/dsl_definition' require 'resque/tasks' Askjane::Application.load_tasks task "resque:setup" => :environment do ENV['QUEUE'] ||= '*' #for redistogo on heroku http://stackoverflow.com/questions/2611747/rails-resque-workers-fail-with-pgerror-server-closed-the-connection-unexpectedl Resque.before_fork = Proc.new { ActiveRecord::Base.establish_connection } end namespace :resque do desc "let resque workers always load the rails environment" task :setup => :environment do end desc "kill all workers (using -QUIT), god will take care of them" task :stop_workers => :environment do pids = Array.new Resque.workers.each do |worker| pids << worker.to_s.split(/:/).second end if pids.size > 0 system("kill -QUIT #{pids.join(' ')}") end # god should handle the restart end end ####run below command #Let's start a worker to run file_serve jobs: #$ cd app_root #$ PIDFILE=./resque.pid BACKGROUND=yes QUEUE=* RAILS_ENV=production rake environment resque:work #PIDFILE=./resque.pid QUEUE=* RAILS_ENV=development rake environment resque:work #rake RAILS_ENV=development resque:stop_workers