module Roda::RodaPlugins::IntegerMatcherMax::InstanceMethods

def _convert_class_Integer(value)

configured Integer value.
Do not have the Integer matcher max when over the maximum
def _convert_class_Integer(value)
  value = super
  value if value <= _max_value_convert_class_Integer
end