module Roda::RodaPlugins::DeleteEmptyHeaders::ResponseMethods

  1. lib/roda/plugins/delete_empty_headers.rb

Methods

Public Instance

  1. finish
  2. finish_with_body

Public Instance methods

finish()

Delete any empty headers when calling finish

[show source]
   # File lib/roda/plugins/delete_empty_headers.rb
15 def finish
16   delete_empty_headers(super)
17 end
finish_with_body(_)

Delete any empty headers when calling finish_with_body

[show source]
   # File lib/roda/plugins/delete_empty_headers.rb
20 def finish_with_body(_)
21   delete_empty_headers(super)
22 end