class Shoulda::Matchers::ActiveModel::ValidateLengthOfMatcher

def matches?(subject)

def matches?(subject)
  super(subject)
  lower_bound_matches? &&
    upper_bound_matches? &&
    allow_nil_matches? &&
    allow_blank_matches?
end