class LicenseFinder::PossibleLicenseFile

def file_path

locations of all the files it searched.
Unused, except in tests, but might be useful if LF ever reports the
def file_path
  @file_path.relative_path_from(@install_path).to_s
end

def initialize(install_path, file_path)

def initialize(install_path, file_path)
  @install_path = Pathname.new(install_path)
  @file_path = Pathname.new(file_path)
end

def license

def license
  License.find_by_text(text)
end

def text

def text
  @text ||= @file_path.send(@file_path.respond_to?(:binread) ? :binread : :read)
end