Sha256: f62c25784021526de4b52d37dbf705f5573e5d9482202b058784f8564659b9c2
Contents?: true
Size: 487 Bytes
Versions: 10
Compression:
Stored size: 487 Bytes
Contents
# typed: ignore # Copyright (c) 2015 Sqreen. All Rights Reserved. # Please refer to our terms for more information: https://www.sqreen.com/terms.html module Sqreen # Context class Context attr_accessor :bt def self.bt Context.new.bt end def initialize @bt = get_current_backtrace end def get_current_backtrace # Force caller to be resolved now caller.map(&:to_s) end def ==(other) other.bt == @bt end end end
Version data entries
10 entries across 10 versions & 1 rubygems