lib/licensee/matchers/copyright.rb in licensee-9.14.0 vs lib/licensee/matchers/copyright.rb in licensee-9.14.1
- old
+ new
@@ -5,10 +5,10 @@
class Copyright < Licensee::Matchers::Matcher
attr_reader :file
# rubocop:disable Layout/LineLength
COPYRIGHT_SYMBOLS = Regexp.union([/copyright/i, /\(c\)/i, "\u00A9", "\xC2\xA9"])
- REGEX = /#{ContentHelper::START_REGEX}(?:portions )?(\s*#{COPYRIGHT_SYMBOLS}.*$)+$/i.freeze
+ REGEX = /#{ContentHelper::START_REGEX}(?:portions )?([_*\-\s]*#{COPYRIGHT_SYMBOLS}.*$)+$/i.freeze
# rubocop:enable Layout/LineLength
def match
# Note: must use content, and not content_normalized here
if file.content.strip =~ /#{REGEX}+\z/i