module Roda::RodaPlugins::HeaderMatchers::RequestMethods

def match_header(key)

Match if the given uppercase key is present inside the environment.
def match_header(key)
  if v = @env["HTTP_#{key.upcase.tr("-","_")}"]
    @captures << v
  end
end