Module: Hanami::Action::Cache::Expires Private
- Defined in:
- lib/hanami/action/cache/expires.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Module with Expires logic
Defined Under Namespace
Modules: ClassMethods Classes: Directives
Class Method Summary collapse
- .included(base) ⇒ Object private
Instance Method Summary collapse
-
#finish(_, res, _) ⇒ Object
private
Finalize the response including default cache headers into the response.
Class Method Details
.included(base) ⇒ Object
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.
13 14 15 16 17 18 |
# File 'lib/hanami/action/cache/expires.rb', line 13 def self.included(base) base.class_eval do extend ClassMethods @expires_directives = nil end end |
Instance Method Details
#finish(_, res, _) ⇒ Object
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.
Finalize the response including default cache headers into the response
46 47 48 49 50 51 52 |
# File 'lib/hanami/action/cache/expires.rb', line 46 def finish(_, res, _) unless res.headers.include?(Action::EXPIRES) res.headers.merge!(self.class.expires_directives.headers) end super end |