Class: Campi::Cache
- Inherits:
-
Object
- Object
- Campi::Cache
- Defined in:
- lib/campi.rb
Instance Attribute Summary collapse
-
#parameters ⇒ Object
Returns the value of attribute parameters.
-
#store ⇒ Object
readonly
Returns the value of attribute store.
-
#store_option ⇒ Object
Returns the value of attribute store_option.
Instance Method Summary collapse
-
#initialize ⇒ Cache
constructor
A new instance of Cache.
Constructor Details
#initialize ⇒ Cache
Returns a new instance of Cache.
41 42 43 44 45 |
# File 'lib/campi.rb', line 41 def initialize @store_option = nil @parameters = nil @store = nil end |
Instance Attribute Details
#parameters ⇒ Object
Returns the value of attribute parameters.
38 39 40 |
# File 'lib/campi.rb', line 38 def parameters @parameters end |
#store ⇒ Object (readonly)
Returns the value of attribute store.
39 40 41 |
# File 'lib/campi.rb', line 39 def store @store end |
#store_option ⇒ Object
Returns the value of attribute store_option.
38 39 40 |
# File 'lib/campi.rb', line 38 def store_option @store_option end |