I have seen examples of how we can create jobs that run every specified interval such as:
after_initialize do
module ::Jobs
class PluginTestJob < ::Jobs::Scheduled
every 30.seconds
def execute(args)
puts "Get the job done"
end
end
end
end
I want to know how I can schedule a job to run daily at exactly the specific time for example 9 PM Pacific Time.