Sha256: 0b90483665b14e2b69b6bce1b0392e227d77f7c49a9867360bf068d55e8eb707
Contents?: true
Size: 239 Bytes
Versions: 76
Compression:
Stored size: 239 Bytes
Contents
# frozen_string_literal: true module ActiveJob module Translation #:nodoc: extend ActiveSupport::Concern included do around_perform do |job, block| I18n.with_locale(job.locale, &block) end end end end
Version data entries
76 entries across 76 versions & 7 rubygems