Sha256: c4a209ce4dec63f670530867160c7cfb5258da3fd6acc8b85eb475ed371c9032
Contents?: true
Size: 236 Bytes
Versions: 114
Compression:
Stored size: 236 Bytes
Contents
# frozen_string_literal: true module I18n class Middleware def initialize(app) @app = app end def call(env) @app.call(env) ensure Thread.current[:i18n_config] = I18n::Config.new end end end
Version data entries
114 entries across 100 versions & 25 rubygems