Sha256: a38b26cc1aa6abf73f509db63b6d6625a4c037edaa7aaa988209c78d609c625e
Contents?: true
Size: 527 Bytes
Versions: 4
Compression:
Stored size: 527 Bytes
Contents
class Licensee module Matchers class Gemspec < Package # We definitely don't want to be evaling arbitrary Gemspec files # While not 100% accurate, use some lenient regex to try to grep the # license declaration from the Gemspec as a string, if any LICENSE_REGEX = /^\s*[a-z0-9_]+\.license\s*\=\s*[\'\"]([a-z\-0-9\.]+)[\'\"]\s*$/i private def license_property match = @file.content.match LICENSE_REGEX match[1].downcase if match && match[1] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems