I have resque and resque-scheduler running on my local machine.
Can I test whether my jobs is working or by copy and paste following code in rails console?
Resque.enqueue_in 3.seconds, SnippetHighlighter
this is my SnippetHighlighter.rb code
def self.perform
puts "it works
end
anyone has same experience? thanks