Sha256: 5e1388050eda5f5097b4b0e1e2f1dfe0b9b8998ae9e7b9906428ed184f71922a
Contents?: true
Size: 379 Bytes
Versions: 11
Compression:
Stored size: 379 Bytes
Contents
module ActiveFedora module Scoping extend ActiveSupport::Concern included do include Default include Named end module ClassMethods def current_scope #:nodoc: Thread.current["#{self}_current_scope"] end def current_scope=(scope) #:nodoc: Thread.current["#{self}_current_scope"] = scope end end end end
Version data entries
11 entries across 11 versions & 1 rubygems