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

def _max_value_convert_class_Integer

matcher.
Use 2**63-1 as the default maximum value for the Integer
def _max_value_convert_class_Integer
  9223372036854775807
end