Class: Lotus::Action::Cache::Expires::Directives Private

Inherits:
Object
  • Object
show all
Defined in:
lib/lotus/action/cache/expires.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Class which stores Expires directives

Since:

  • 0.3.0

Instance Method Summary collapse

Constructor Details

#initialize(amount, *values) ⇒ Directives

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Directives.

Since:

  • 0.3.0



55
56
57
58
# File 'lib/lotus/action/cache/expires.rb', line 55

def initialize(amount, *values)
  @amount = amount
  @cache_control = Lotus::Action::Cache::CacheControl::Directives.new(*(values << { max_age: amount }))
end

Instance Method Details

#headersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.3.0



60
61
62
# File 'lib/lotus/action/cache/expires.rb', line 60

def headers
  { HEADER => time.httpdate }.merge(@cache_control.headers)
end