include_content?(status)
:nodoc:
# File actionpack/lib/action_controller/metal/head.rb, line 43 def include_content?(status) case status when 100..199 false when 204, 205, 304 false else true end end