method
string_body?
v3.0.9 -
Show latest stable
- Class:
ActionDispatch::Http::Cache::Response
string_body?()private
No documentation available.
# File actionpack/lib/action_dispatch/http/cache.rb, line 109
def string_body?
!@blank && @body.respond_to?(:all?) && @body.all? { |part| part.is_a?(String) }
end