Skip to content

Instantly share code, notes, and snippets.

View konung's full-sized avatar
๐Ÿ’ญ
๐Ÿ’™๐Ÿ’›

Nick Gorbikoff konung

๐Ÿ’ญ
๐Ÿ’™๐Ÿ’›
View GitHub Profile
@robhurring
robhurring / Rakefile
Created December 7, 2010 20:09
Delayed Job with Sinatra -- without sinatra specific gems, etc.
task :environment do
require './dj-sinatra'
end
namespace :jobs do
desc "Clear the delayed_job queue."
task :clear => :environment do
Delayed::Job.delete_all
end