1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Remove old class_methods.rb.

This commit is contained in:
Tobias Svensson 2013-02-01 09:51:01 +00:00
parent f4e39af839
commit 348a17cae9

View file

@ -1,14 +0,0 @@
module Sidetiq
module Schedulable
module ClassMethods
def tiq(&block)
Sidetiq::Scheduler.instance.instance_eval(&block)
end
end
def self.included(klass)
klass.extend(Sidetiq::Schedulable::ClassMethods)
end
end
end