# File lib/paperclip/matchers/validate_attachment_content_type_matcher.rb, line 34
        def matches? subject
          @subject = subject
          @subject = @subject.new if @subject.class == Class
          @allowed_types && @rejected_types &&
          allowed_types_allowed? && rejected_types_rejected?
        end