method
include_content?
v8.0.0 -
Show latest stable
- Class:
ActionController::Head
include_content?(status)private
No documentation available.
# File actionpack/lib/action_controller/metal/head.rb, line 56
def include_content?(status)
case status
when 100..199
false
when 204, 205, 304
false
else
true
end
end