Skip to content

Instantly share code, notes, and snippets.

@russ
Created October 3, 2011 22:46
Show Gist options
  • Save russ/1260465 to your computer and use it in GitHub Desktop.
Save russ/1260465 to your computer and use it in GitHub Desktop.
class NotifierJob
@queue = :urgent
def self.perform(user)
Notifier.welcome(user).deliver
end
end
Qu.enqueue(NotifierJob, User.last)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment