Created
January 29, 2009 19:13
-
-
Save lukeredpath/54682 to your computer and use it in GitHub Desktop.
An easy way to take the effort out of managing your background worker process is to write a simple wrapper script using the *daemons* gem.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'daemons' | |
dir = File.expand_path(File.join(File.dirname(__FILE__), '..')) | |
daemon_options = { | |
:multiple => false, | |
:dir_mode => :normal, | |
:dir => File.join(dir, 'tmp', 'pids'), | |
:backtrace => true | |
} | |
Daemons.run_proc('job_runner', daemon_options) do | |
if ARGV.include?('--') | |
ARGV.slice! 0..ARGV.index('--') | |
else | |
ARGV.clear | |
end | |
Dir.chdir dir | |
RAILS_ENV = ARGV.first || ENV['RAILS_ENV'] || 'development' | |
require File.join('config', 'environment') | |
Delayed::Worker.new.start | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment