class Shoulda::Matchers::ActiveModel::EnsureLengthOfMatcher

def allows_minimum_length?

def allows_minimum_length?
  if @options.key?(:minimum)
    allows_length_of?(@options[:minimum], @short_message)
  else
    true
  end
end