module Roda::RodaPlugins::Base::RequestMethods

def match_method(type)

to match on multiple methods.
Match by request method. This can be an array if you want
def match_method(type)
  if type.is_a?(Array)
    type.any?{|t| match_method(t)}
  else
    type.to_s.upcase == @env["REQUEST_METHOD"]
  end
end