module Roda::RodaPlugins::HeaderMatchers::RequestMethods
def match_header(key)
def match_header(key) key = key.upcase key.tr!("-","_") unless key == "CONTENT_TYPE" || key == "CONTENT_LENGTH" key = "HTTP_#{key}" end if v = @env[key] @captures << v end end