Sha256: 928835caf1b86ac2f7e3a8df302609470ef24c92b5e9fead6eca7359095562f4
Contents?: true
Size: 525 Bytes
Versions: 6
Compression:
Stored size: 525 Bytes
Contents
module LicenseFinder class BundlerPackage < Package def initialize(spec, bundler_def, options={}) super( spec.name, spec.version.to_s, options.merge( summary: spec.summary, description: spec.description, homepage: spec.homepage, children: spec.dependencies.map(&:name), groups: Array(bundler_def && bundler_def.groups), spec_licenses: spec.licenses, install_path: spec.full_gem_path ) ) end end end
Version data entries
6 entries across 6 versions & 1 rubygems