Sha256: c18c0e66850662be8536846421c65e026314c405303f88433f037e209a50fe6d
Contents?: true
Size: 310 Bytes
Versions: 46
Compression:
Stored size: 310 Bytes
Contents
# frozen_string_literal: true module LicenseFinder class SbtDependencyFinder def initialize(project_path) @project_path = project_path end def dependencies Pathname .glob(@project_path.join('**', 'target', 'license-reports', '*.csv')) .map(&:read) end end end
Version data entries
46 entries across 46 versions & 2 rubygems