8 lines
119 B
Ruby
8 lines
119 B
Ruby
class WalkReminderJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(*args)
|
|
puts "Go with the dog!"
|
|
end
|
|
end
|