mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
237 B
Ruby
13 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveJob
|
|
module Timezones # :nodoc:
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
around_perform do |job, block|
|
|
Time.use_zone(job.timezone, &block)
|
|
end
|
|
end
|
|
end
|
|
end
|