Module: DataHut

Defined in:
lib/data_hut.rb,
lib/data_hut/version.rb,
lib/data_hut/data_warehouse.rb

Defined Under Namespace

Classes: DataWarehouse

Constant Summary collapse

VERSION =
"0.0.8"

Class Method Summary collapse

Class Method Details

.connect(name) ⇒ DataHut::DataWarehouse

convenience method to create or open an existing connection to a DataHut data store.

Parameters:

  • name (String)

    name of the DataHut. This will also be the name of the sqlite3 file written to the current working directory (e.g. ‘./<name>.db’)

Returns:

See Also:



14
15
16
# File 'lib/data_hut.rb', line 14

def self.connect(name)
  DataWarehouse.connect(name)
end