Module: Roda::RodaPlugins::Head::InstanceMethods
- Defined in:
- lib/roda/plugins/head.rb
Instance Method Summary collapse
-
#call ⇒ Object
Always use an empty response body for head requests, with a content length of 0.
Instance Method Details
#call ⇒ Object
Always use an empty response body for head requests, with a content length of 0.
31 32 33 34 35 36 37 |
# File 'lib/roda/plugins/head.rb', line 31 def call(*) res = super if @_request.head? res[2] = EMPTY_ARRAY end res end |