class EmailHeaderMatcher
Public Class Methods
match?(line)
click to toggle source
# File lib/email_reply_trimmer/email_header_matcher.rb, line 64 def self.match?(line) EMAIL_HEADER_REGEXES.any? { |r| line =~ r } end