module Roda::RodaPlugins::Head::InstanceMethods
def call(*)
Always use an empty response body for head requests, with a
def call(*) res = super if @_request.head? res[2] = EMPTY_ARRAY end res end
def call(*) res = super if @_request.head? res[2] = EMPTY_ARRAY end res end