Module: Lotus::Action::Cache::Expires Private

Defined in:
lib/lotus/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

Since:

  • 0.3.0

Defined Under Namespace

Modules: ClassMethods Classes: Directives

Constant Summary collapse

HEADER =

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

The HTTP header for Expires

Since:

  • 0.3.0

'Expires'.freeze

Class Method Summary collapse

Instance Method Summary collapse

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.

Since:

  • 0.3.0



19
20
21
# File 'lib/lotus/action/cache/expires.rb', line 19

def self.included(base)
  base.extend ClassMethods
end

Instance Method Details

#finishObject

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

See Also:

  • Lotus::Action#finish

Since:

  • 0.3.0



43
44
45
46
# File 'lib/lotus/action/cache/expires.rb', line 43

def finish
  super
  headers.merge!(self.class.expires_directives.headers) unless headers.include? HEADER
end