method
cache_control_segments
v6.1.3.1 -
Show latest stable
- Class:
ActionDispatch::Http::Cache::Response
cache_control_segments()private
No documentation available.
# File actionpack/lib/action_dispatch/http/cache.rb, line 138
def cache_control_segments
if cache_control = _cache_control
cache_control.delete(" ").split(",")
else
[]
end
end