Sha256: 94fd8246fa09cbfc30e25c1b7f17344f9cb17971a69b29880c4300a996070ef5

Contents?: true

Size: 635 Bytes

Versions: 2

Compression:

Stored size: 635 Bytes

Contents

module LicenseFinder
  class PossibleLicenseFile
    def initialize(install_path, file_path)
      @install_path = Pathname.new(install_path)
      @file_path = Pathname.new(file_path)
    end

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

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

    def path
      File.join(@install_path, file_path)
    end

    def license
      License.find_by_text(text)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
license_finder-1.2 lib/license_finder/possible_license_file.rb
license_finder-1.2-java lib/license_finder/possible_license_file.rb