Class: Hanami::Action::Cache::ValueDirective Private

Inherits:
Object
  • Object
show all
Defined in:
lib/hanami/action/cache/directives.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 representing value directives

ex: max-age=600

Since:

  • 0.3.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, value) ⇒ ValueDirective

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 ValueDirective.

Since:

  • 0.3.0



31
32
33
# File 'lib/hanami/action/cache/directives.rb', line 31

def initialize(name, value)
  @name, @value = name, value
end

Instance Attribute Details

#nameObject (readonly)

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



27
28
29
# File 'lib/hanami/action/cache/directives.rb', line 27

def name
  @name
end

Instance Method Details

#to_strObject

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



37
38
39
# File 'lib/hanami/action/cache/directives.rb', line 37

def to_str
  "#{@name.to_s.tr('_', '-')}=#{@value.to_i}"
end

#valid?Boolean

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:

  • (Boolean)

Since:

  • 0.3.0



43
44
45
# File 'lib/hanami/action/cache/directives.rb', line 43

def valid?
  VALUE_DIRECTIVES.include? @name
end