Class: Hanami::Action::Cache::NonValueDirective Private
- Inherits:
-
Object
- Object
- Hanami::Action::Cache::NonValueDirective
- 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 non value directives
ex: no-cache
Instance Attribute Summary collapse
- #name ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(name) ⇒ NonValueDirective
constructor
private
A new instance of NonValueDirective.
- #to_str ⇒ Object private
- #valid? ⇒ Boolean private
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.
59 60 61 |
# File 'lib/hanami/action/cache/directives.rb', line 59 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ Object (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.
55 56 57 |
# File 'lib/hanami/action/cache/directives.rb', line 55 def name @name end |
Instance Method Details
#to_str ⇒ 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.
65 66 67 |
# File 'lib/hanami/action/cache/directives.rb', line 65 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.
71 72 73 |
# File 'lib/hanami/action/cache/directives.rb', line 71 def valid? NON_VALUE_DIRECTIVES.include? @name end |