module Roda::RodaPlugins::IntegerMatcherMax::RequestMethods

def _match_class_convert_Integer(value)

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

def _match_class_max_Integer

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