Class: Hanami::Action::Cache::Expires::Directives Private
- Inherits:
-
Object
- Object
- Hanami::Action::Cache::Expires::Directives
- Defined in:
- lib/hanami/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
Instance Method Summary collapse
- #headers ⇒ Object private
-
#initialize(amount, *values) ⇒ Directives
constructor
private
A new instance of Directives.
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.
61 62 63 64 |
# File 'lib/hanami/action/cache/expires.rb', line 61 def initialize(amount, *values) @amount = amount @cache_control = Hanami::Action::Cache::CacheControl::Directives.new(*(values << {max_age: amount})) end |