class EmptyLineMatcher

Public Class Methods

match?(line) click to toggle source
# File lib/email_reply_trimmer/empty_line_matcher.rb, line 3
def self.match?(line)
  line =~ /^[[:blank:]]*$/
end