Class: Lotus::Action::Cache::NonValueDirective Private

Inherits:
Object
  • Object
show all
Defined in:
lib/lotus/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 non value directives

ex: no-cache

Since:

  • 0.3.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ NonValueDirective

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

Since:

  • 0.3.0



48
49
50
# File 'lib/lotus/action/cache/directives.rb', line 48

def initialize(name)
  @name = name
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



46
47
48
# File 'lib/lotus/action/cache/directives.rb', line 46

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



52
53
54
# File 'lib/lotus/action/cache/directives.rb', line 52

def to_str
  @name.to_s.tr('_', '-')
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



56
57
58
# File 'lib/lotus/action/cache/directives.rb', line 56

def valid?
  NON_VALUE_DIRECTIVES.include? @name
end