Sha256: 7cc36177000b526d4d201a03805a12babbbfd13f2bcb9d98dbd2e6c8df1b88f8
Contents?: true
Size: 794 Bytes
Versions: 1
Compression:
Stored size: 794 Bytes
Contents
module MemoryProfiler class Helpers def initialize @gem_guess_cache = Hash.new @location_cache = Hash.new { |h,k| h[k] = Hash.new.compare_by_identity } @class_name_cache = Hash.new.compare_by_identity end def guess_gem(path) @gem_guess_cache[path] ||= if /(\/gems\/.*)*\/gems\/(?<gemname>[^\/]+)/ =~ path gemname elsif /\/rubygems[\.\/]/ =~ path "rubygems".freeze elsif /(?<app>[^\/]+\/(bin|app|lib))/ =~ path app else "other".freeze end end def lookup_location(file, line) @location_cache[file][line] ||= "#{file}:#{line}" end def lookup_class_name(klass) @class_name_cache[klass] ||= (klass && klass.name) || '<<Unknown>>' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
memory_profiler-0.9.6 | lib/memory_profiler/helpers.rb |