Skip to content

foolabs/undelayed_job

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Undelayed::Job

undelayed_job provides a database-less backend to delayed_job:http://rubygems.org/gems/delayed_job, executing jobs immediately without the need for a sparate worker.

This is mostly usefull for development and testing environments.

Usage

Install and require the gem, then tell delayed_job use the backend

Delayed::Worker.backend = :undelayed

e.g. in rails via

config.gem 'undelayed_job'
…
config.after_initialize do
  Delayed::Worker.backend = :undelayed
end

in your environments/development.rb

About

Undelayed_job jobs provides a database-less backand for delayed_job that executes immediately without a separate worker process.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages