KirbyBase 2.5 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +2 -2
- data/bin/kbserver.rb +0 -2
- data/changes.txt +18 -0
- data/examples/aaa_try_this_first/kbtest.rb +10 -12
- data/examples/memo_test/memo_test.rb +12 -1
- data/kirbybaserubymanual.html +68 -38
- data/lib/kirbybase.rb +676 -540
- data/test/base_test.rb +17 -0
- data/test/tc_local_db.rb +80 -0
- data/test/tc_local_table.rb +716 -0
- data/test/ts_local.rb +4 -0
- metadata +8 -3
data/test/ts_local.rb
ADDED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
|
|
3
3
|
specification_version: 1
|
4
4
|
name: KirbyBase
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version:
|
7
|
-
date: 2005-12-
|
6
|
+
version: 2.5.1
|
7
|
+
date: 2005-12-28
|
8
8
|
summary: "KirbyBase is a simple, pure-Ruby, plain-text, flat-file database management
|
9
9
|
system."
|
10
10
|
require_paths:
|
@@ -35,6 +35,10 @@ files:
|
|
35
35
|
- README
|
36
36
|
- changes.txt
|
37
37
|
- kirbybaserubymanual.html
|
38
|
+
- test/base_test.rb
|
39
|
+
- test/tc_local_db.rb
|
40
|
+
- test/tc_local_table.rb
|
41
|
+
- test/ts_local.rb
|
38
42
|
- examples/aaa_try_this_first
|
39
43
|
- examples/add_column_test
|
40
44
|
- examples/calculated_field_test
|
@@ -115,7 +119,8 @@ files:
|
|
115
119
|
- images/callouts/7.png
|
116
120
|
- images/callouts/8.png
|
117
121
|
- images/callouts/9.png
|
118
|
-
test_files:
|
122
|
+
test_files:
|
123
|
+
- test/ts_local.rb
|
119
124
|
rdoc_options: []
|
120
125
|
extra_rdoc_files: []
|
121
126
|
executables:
|