johnideal (owner)

Revisions

gist: 225440 Download_button fork
public
Public Clone URL: git://gist.github.com/225440.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
require 'rubygems'
require 'daemon-spawn'
 
class MinionWorkerControl < DaemonSpawn::Base
 
  def start(args)
    load File.join(File.dirname(__FILE__), 'notification_worker')
  end
end