lib/licensee/matchers/gemspec.rb in licensee-9.16.0 vs lib/licensee/matchers/gemspec.rb in licensee-9.16.1

- old
+ new

@@ -3,27 +3,27 @@ module Licensee module Matchers class Gemspec < Licensee::Matchers::Package # a value is a string surrounded by any amount of whitespace # optionally ended with (non-captured) ".freeze" - VALUE_REGEX = /\s*['"]([a-z\-0-9.]+)['"](?:\.freeze)?\s*/i.freeze + VALUE_REGEX = /\s*['"]([a-z\-0-9.]+)['"](?:\.freeze)?\s*/i # an array contains one or more values. all values, or array itself, # can be surrounded by any amount of whitespace. do not capture # non-value groups - ARRAY_REGEX = /\s*\[#{VALUE_REGEX}(?:,#{VALUE_REGEX})*\]\s*/i.freeze + ARRAY_REGEX = /\s*\[#{VALUE_REGEX}(?:,#{VALUE_REGEX})*\]\s*/i DECLARATION_REGEX = / ^\s*[a-z0-9_]+\.([a-z0-9_]+)\s*=#{VALUE_REGEX}$ - /ix.freeze + /ix LICENSE_REGEX = / ^\s*[a-z0-9_]+\.license\s*=#{VALUE_REGEX}$ - /ix.freeze + /ix LICENSE_ARRAY_REGEX = / ^\s*[a-z0-9_]+\.licenses\s*=#{ARRAY_REGEX}$ - /ix.freeze + /ix private def license_property match = @file.content.match LICENSE_REGEX