h1. Daemontor

h2. DESCRIPTION

If you are looking for a package that allows you to simply run a process in the background, Deamontor can help you out. If you're looking for a package that does threading and fine grain process control you'll probably want to look elsewhere.

h2. DEPENDENCIES

This module depends on the fork system call so it will not run on a Windows OS.

h2. SYNOPSIS

require 'rubygems'
require 'daemontor'
class Test
  include Daemontor
  def initialize
    daemonize!
  end
end
Test.new

Also see code in examples/

h2. INSTALL

gem install daemontor or bundle install

h2. LICENSE This project is licensed under the MIT license (See LICENSE for details).