module Roda::RodaPlugins::Base::RequestMethods
def _match_class_Integer
Match integer segment, and yield resulting value as an
def _match_class_Integer consume(/\A\/(\d+)(?=\/|\z)/){|i| [i.to_i]} end
def _match_class_Integer consume(/\A\/(\d+)(?=\/|\z)/){|i| [i.to_i]} end