Class: Lotus::Action::Cache::CacheControl::Directives Private

Inherits:
Object
  • Object
show all
Defined in:
lib/lotus/action/cache/cache_control.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 CacheControl values

Since:

  • 0.3.0

Instance Method Summary collapse

Constructor Details

#initialize(*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
# File 'lib/lotus/action/cache/cache_control.rb', line 55

def initialize(*values)
  @directives = Lotus::Action::Cache::Directives.new(*values)
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



59
60
61
62
63
64
65
# File 'lib/lotus/action/cache/cache_control.rb', line 59

def headers
  if @directives.any?
    { HEADER => @directives.join(', ') }
  else
    {}
  end
end