Sha256: 6665c65b78126968a347e6768268d17f58d8113f7f61dac400e1a467ec852e16
Contents?: true
Size: 301 Bytes
Versions: 46
Compression:
Stored size: 301 Bytes
Contents
# frozen_string_literal: true module LicenseFinder class GradleDependencyFinder def initialize(project_path) @project_path = project_path end def dependencies Pathname .glob(@project_path.join('**', 'dependency-license.xml')) .map(&:read) end end end
Version data entries
46 entries across 46 versions & 2 rubygems