Module: UsefulDB
- Defined in:
- lib/usefuldb.rb,
lib/usefuldb/gui.rb,
lib/usefuldb/version.rb,
lib/usefuldb/settings.rb,
lib/usefuldb/utilities.rb,
lib/usefuldb/exceptions.rb
Defined Under Namespace
Classes: EmptyDB, EntryInDB, GUI, KeyOutOfBounds, Settings, UsefulUtils, Version
Class Method Summary collapse
- .add(hash, log) ⇒ Object
- .count(log) ⇒ Object
- .dbLoad(log) ⇒ Object
- .dbSave(log) ⇒ Object
- .remove(key, log) ⇒ Object
- .search(args, log) ⇒ Object
- .setup(log) ⇒ Object
Class Method Details
.add(hash, log) ⇒ Object
13 14 15 |
# File 'lib/usefuldb.rb', line 13 def add(hash, log) UsefulDB::UsefulUtils.add(hash, log) end |
.count(log) ⇒ Object
17 18 19 |
# File 'lib/usefuldb.rb', line 17 def count(log) UsefulDB::UsefulUtils.count(log) end |
.dbLoad(log) ⇒ Object
29 30 31 |
# File 'lib/usefuldb.rb', line 29 def dbLoad(log) UsefulDB::UsefulUtils.dbLoad(log) end |
.dbSave(log) ⇒ Object
25 26 27 |
# File 'lib/usefuldb.rb', line 25 def dbSave(log) UsefulDB::UsefulUtils.dbSave(log) end |
.remove(key, log) ⇒ Object
21 22 23 |
# File 'lib/usefuldb.rb', line 21 def remove(key, log) UsefulDB::UsefulUtils.remove(key, log) end |
.search(args, log) ⇒ Object
33 34 35 |
# File 'lib/usefuldb.rb', line 33 def search(args, log) return UsefulDB::UsefulUtils.search(args, log) end |
.setup(log) ⇒ Object
37 38 39 |
# File 'lib/usefuldb.rb', line 37 def setup(log) UsefulDB::UsefulUtils.setup(log) end |