class Resque::Plugins::Loner::UniqueJob

Public Class Methods

inherited(host) click to toggle source
Calls superclass method
# File lib/resque-loner/unique_job.rb, line 75
def self.inherited(host)
  super(host)
  return  if @__unique_job_warned
  warn 'Inherit Resque::Plugins::Loner::UniqueJob is deprecated. Include Resque::Plugins::UniqueJob module instead.'
  @__unique_job_warned = true
end