module Resque::Helpers

def constantize(camel_cased_word)

Tries to find a constant with the name specified in the argument string
def constantize(camel_cased_word)
  Resque.constantize(camel_cased_word)
end