Class: DbStore::Container

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(identifier, dataset) ⇒ Container

Returns a new instance of Container.



50
51
52
# File 'lib/wherever/db_store.rb', line 50

def initialize(identifier, dataset)
  @identifiers, @datasets = identifier, dataset
end

Instance Attribute Details

#datasetsObject (readonly)

Returns the value of attribute datasets.



48
49
50
# File 'lib/wherever/db_store.rb', line 48

def datasets
  @datasets
end

#identifiersObject (readonly)

Returns the value of attribute identifiers.



48
49
50
# File 'lib/wherever/db_store.rb', line 48

def identifiers
  @identifiers
end