Skip to content

Instantly share code, notes, and snippets.

View ewherrmann's full-sized avatar

Ed Herrmann ewherrmann

  • Colgate-Palmolive
  • New Albany, IN
  • X @ewH
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ewherrmann on github.
  • I am ewh (https://keybase.io/ewh) on keybase.
  • I have a public key whose fingerprint is 1DA6 EC9C CA51 6D17 8D6E BBED 7D33 3CBA B758 D6F9

To claim this, I am signing this object:

@ewherrmann
ewherrmann / resque.rake
Last active July 2, 2020 00:36
Collection of Resque related custom rake tasks from around the web
require 'resque/tasks'
namespace :resque do
def del(key)
Resque.redis.keys(key).each { |k| Resque.redis.del(k) }
end
desc "Resque setup according to installation guide"
task :setup => :environment