Class: DbStore::Container
- Inherits:
-
Object
- Object
- DbStore::Container
- Defined in:
- lib/wherever/db_store.rb
Instance Attribute Summary collapse
-
#datasets ⇒ Object
readonly
Returns the value of attribute datasets.
-
#identifiers ⇒ Object
readonly
Returns the value of attribute identifiers.
Instance Method Summary collapse
-
#initialize(identifier, dataset) ⇒ Container
constructor
A new instance of Container.
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
#datasets ⇒ Object (readonly)
Returns the value of attribute datasets.
48 49 50 |
# File 'lib/wherever/db_store.rb', line 48 def datasets @datasets end |
#identifiers ⇒ Object (readonly)
Returns the value of attribute identifiers.
48 49 50 |
# File 'lib/wherever/db_store.rb', line 48 def identifiers @identifiers end |