From e96d8db2ab0a5bece954450d68b48a3a6adcb3f8 Mon Sep 17 00:00:00 2001 From: dz0004455 Date: Sun, 21 Mar 2010 02:56:37 -0500 Subject: New formula qdbm QDBM is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table or B+ tree. Signed-off-by: David Höppner <0xffea@gmail.com> * correct man path * configure array --- Library/Formula/qdbm.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Library/Formula/qdbm.rb (limited to 'Library/Formula') diff --git a/Library/Formula/qdbm.rb b/Library/Formula/qdbm.rb new file mode 100644 index 000000000..72334b6e8 --- /dev/null +++ b/Library/Formula/qdbm.rb @@ -0,0 +1,20 @@ +require 'formula' + +class Qdbm