Sha256: 8fcd110b766da910ffa58ae17ce58cb43968759ef3b8274cdde123f453af4c0e
Contents?: true
Size: 369 Bytes
Versions: 13
Compression:
Stored size: 369 Bytes
Contents
class Thread def push_resugan_context(namespace = '') if !@resugan_context @resugan_context_stack = [] end @resugan_context = Resugan::Context.new(namespace) @resugan_context_stack << @resugan_context end def pop_resugan_context @resugan_context = @resugan_context_stack.pop end def resugan_context @resugan_context end end
Version data entries
13 entries across 13 versions & 1 rubygems