class Zoom::Cache::Result
Attributes
contents[R]
filename[R]
lineno[R]
match[R]
tag[R]
Public Class Methods
new(tag, contents, cache, grep_like_tags)
click to toggle source
# File lib/zoom/cache/result.rb, line 12 def initialize(tag, contents, cache, grep_like_tags) @cache = cache @contents = contents.unpack("C*").pack("U*").gsub( /([\u0080-\u00ff]+)/, "\\1".dump[1..-2] ) @filename = nil @grep_like = false @lineno = nil @match = nil @tag = tag if (grep_like_tags) case @contents when /^Binary file (.+) matches\.$/ @contents.match(/^Binary file (.+) matches\.$/) do |m| next if (m.nil?) @filename = "Binary file" @contents = m[1] end when /^([^:]+)[:-](\d+)[:-](.*)$/ @contents.match(/^([^:]+)[:-](\d+)[:-](.*)$/) do |m| next if (m.nil?) @grep_like = true @filename = m[1].gsub(/^\.\//, "") @lineno = m[2] @match = m[3] end end end end
Public Instance Methods
grep_like?()
click to toggle source
# File lib/zoom/cache/result.rb, line 8 def grep_like? return @grep_like end
profile_name()
click to toggle source
# File lib/zoom/cache/result.rb, line 45 def profile_name return @cache.profile_name end
pwd()
click to toggle source
# File lib/zoom/cache/result.rb, line 49 def pwd return @cache.pwd end