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.
40 41 42 43 44 45 46 |
# File 'lib/roda/plugins/head.rb', line 40 def call(*) res = super if @_request.head? res[2] = EMPTY_ARRAY end res end |