# File lib/paperclip/matchers/validate_attachment_size_matcher.rb, line 39
        def matches? subject
          @subject = subject
          @subject = @subject.new if @subject.class == Class
          lower_than_low? && higher_than_low? && lower_than_high? && higher_than_high?
        end