class Shoulda::Matchers::ActiveModel::NumericalityMatchers::RangeMatcher

def simple_description

def simple_description
  description = ''
  if expects_strict?
    description << ' strictly'
  end
  description +
    "disallow :#{attribute} from being a number that is not " +
    range_description
end