module Roda::RodaPlugins::IntegerMatcherMax::InstanceMethods
Private Instance Methods
Source
# File lib/roda/plugins/Integer_matcher_max.rb, line 40 def _convert_class_Integer(value) value = super value if value <= _max_value_convert_class_Integer end
Do not have the Integer matcher max when over the maximum configured Integer value.
Calls superclass method
Source
# File lib/roda/plugins/Integer_matcher_max.rb, line 47 def _max_value_convert_class_Integer 9223372036854775807 end
Use 2**63-1 as the default maximum value for the Integer matcher.