Sha256: a7a7241722501f89ab3e5cf238fb059bd25ff25ebbedbe7932bd2c52f80810f3
Contents?: true
Size: 240 Bytes
Versions: 79
Compression:
Stored size: 240 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
79 entries across 76 versions & 7 rubygems