Sha256: 637cc441f130f464aa089ec3b78cfa401fe880711247af0b62530709dfd395a7

Contents?: true

Size: 548 Bytes

Versions: 20

Compression:

Stored size: 548 Bytes

Contents

module 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*$
        /ix

      private

      def license_property
        match = @file.content.match LICENSE_REGEX
        match[1].downcase if match && match[1]
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
licensee-8.9.2 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.9.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.8.5 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.8.4 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.8.3 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.8.2 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.8.1 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.8.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.7.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.6.1 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.6.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.5.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.4.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.3.1 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.3.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.2.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.1.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-8.0.0 lib/licensee/matchers/gemspec_matcher.rb
licensee-7.0.1 lib/licensee/matchers/gemspec_matcher.rb
licensee-7.0.0 lib/licensee/matchers/gemspec_matcher.rb