0.0
No commit activity in last 3 years
No release in over 3 years
Undelayed_job jobs provides a database-less backand for delayed_job that executes immediately without a separate worker process.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

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