Class: Campi::Cache

Inherits:
Object
  • Object
show all
Defined in:
lib/campi.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCache

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

#parametersObject

Returns the value of attribute parameters.



38
39
40
# File 'lib/campi.rb', line 38

def parameters
  @parameters
end

#storeObject (readonly)

Returns the value of attribute store.



39
40
41
# File 'lib/campi.rb', line 39

def store
  @store
end

#store_optionObject

Returns the value of attribute store_option.



38
39
40
# File 'lib/campi.rb', line 38

def store_option
  @store_option
end