Project

taskiq

0.0
No commit activity in last 3 years
No release in over 3 years
Run any rake tasks as a sidekiq by adding delay: in front of the rake task e.g. rake delay:db:seed'
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

taskiq

taskiq allows you to run any rake task in the background using sidekiq.

Install

# Gemfile
gem 'taskiq', '0.1.1'


# Rakefile (at the end)
require 'tasks/taskiq' 

Usage

Add delay: to the start of any rake task e.g.

$ rake delay:db:seed

rake db:seed will now be run in the background as a sidekiq job