class Faraday::HttpCache::CacheControl

def max_age

Returns nil if the 'max-age' directive isn't present.

Internal: Gets the 'max-age' directive as an Integer.
def max_age
  @directives['max-age'].to_i if @directives.key?('max-age')
end