module Roda::RodaPlugins::Head::RequestMethods
def match_method(method)
If the current request is a HEAD request, match if one of
def match_method(method) super || (!method.is_a?(Array) && head? && method.to_s.upcase == 'GET') end
def match_method(method) super || (!method.is_a?(Array) && head? && method.to_s.upcase == 'GET') end