module Roda::RodaPlugins::Base::RequestMethods

def _match_class_Integer

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