Sha256: 1c3b9f58df2b61995d393560cc8fad01f9865d5e52cb80516d7501b30b3d5f13
Contents?: true
Size: 396 Bytes
Versions: 14
Compression:
Stored size: 396 Bytes
Contents
# A much simpler source line cacher because linecache sucks at platform compat module Raven class LineCache class << self CACHE = {} def getlines(path) CACHE[path] ||= begin IO.readlines(path) rescue [] end end def getline(path, n) return nil if n < 1 getlines(path)[n - 1] end end end end
Version data entries
14 entries across 14 versions & 2 rubygems