Sha256: 9a906b938061f18e1660b645e20ef33019ae142fd78d073b7a6b01831e4ad63a
Contents?: true
Size: 547 Bytes
Versions: 11
Compression:
Stored size: 547 Bytes
Contents
# frozen_string_literal: true require 'active_support' require 'active_support/per_thread_registry' module DHS module Interceptors module ExtendedRollbar extend ActiveSupport::Concern class ThreadRegistry # Using ActiveSupports PerThreadRegistry to be able to support Active Support v4. # Will switch to thread_mattr_accessor (which comes with Activesupport) when we dropping support for Active Support v4. extend ActiveSupport::PerThreadRegistry attr_accessor :log end end end end
Version data entries
11 entries across 11 versions & 1 rubygems