lafcadio 0.8.3 → 0.9.0
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/lib/lafcadio.rb +1 -1
- data/lib/lafcadio.rb~ +1 -1
- data/lib/lafcadio/dateTime.rb~ +93 -0
- data/lib/lafcadio/depend.rb~ +8 -0
- data/lib/lafcadio/domain.rb +127 -120
- data/lib/lafcadio/domain.rb~ +48 -40
- data/lib/lafcadio/mock.rb +9 -12
- data/lib/lafcadio/mock.rb~ +110 -0
- data/lib/lafcadio/objectField.rb +6 -6
- data/lib/lafcadio/objectField.rb~ +564 -0
- data/lib/lafcadio/objectStore.rb +45 -24
- data/lib/lafcadio/objectStore.rb.~1.64.~ +766 -0
- data/lib/lafcadio/objectStore.rb~ +57 -26
- data/lib/lafcadio/query.rb +57 -22
- data/lib/lafcadio/query.rb~ +48 -17
- data/lib/lafcadio/schema.rb~ +56 -0
- data/lib/lafcadio/test.rb +218 -0
- data/lib/lafcadio/test.rb~ +25 -0
- data/lib/lafcadio/test/testconfig.dat~ +13 -0
- data/lib/lafcadio/util.rb +3 -2
- data/lib/lafcadio/util.rb~ +104 -0
- metadata +111 -97
metadata
CHANGED
@@ -1,123 +1,137 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.6
|
3
3
|
specification_version: 1
|
4
4
|
name: lafcadio
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date:
|
6
|
+
version: 0.9.0
|
7
|
+
date: 2005-10-23
|
8
8
|
summary: Lafcadio is an object-relational mapping layer
|
9
9
|
require_paths:
|
10
|
-
- lib
|
10
|
+
- lib
|
11
11
|
email: sera@fhwang.net
|
12
12
|
homepage: http://lafcadio.rubyforge.org/
|
13
13
|
rubyforge_project:
|
14
|
-
description: Lafcadio is an object-relational mapping layer for Ruby and MySQL. It lets you
|
14
|
+
description: "Lafcadio is an object-relational mapping layer for Ruby and MySQL. It lets you
|
15
|
+
treat database rows like first-class Ruby objects, minimizing the amount of time
|
16
|
+
you have to spend thinking about MySQL vagaries so you can spend more time
|
17
|
+
thinking about your program's logic. It also offers extensive support for
|
18
|
+
unit-testing complex database logic without running cumbersome setup scripts."
|
15
19
|
autorequire: lafcadio
|
16
20
|
default_executable:
|
17
21
|
bindir: bin
|
18
22
|
has_rdoc: false
|
19
23
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
24
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
25
|
+
-
|
26
|
+
- ">"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: 0.0.0
|
24
29
|
version:
|
25
30
|
platform: ruby
|
26
|
-
signing_key:
|
27
|
-
cert_chain:
|
28
31
|
authors:
|
29
|
-
- Francis Hwang
|
32
|
+
- Francis Hwang
|
30
33
|
files:
|
31
|
-
- lib/lafcadio
|
32
|
-
- lib/lafcadio.rb
|
33
|
-
- lib/lafcadio.rb~
|
34
|
-
- lib/lafcadio/
|
35
|
-
- lib/lafcadio/
|
36
|
-
- lib/lafcadio/
|
37
|
-
- lib/lafcadio/
|
38
|
-
- lib/lafcadio/
|
39
|
-
- lib/lafcadio/
|
40
|
-
- lib/lafcadio/
|
41
|
-
- lib/lafcadio/
|
42
|
-
- lib/lafcadio/
|
43
|
-
- lib/lafcadio/
|
44
|
-
- lib/lafcadio/
|
45
|
-
- lib/lafcadio/
|
46
|
-
- lib/lafcadio/
|
47
|
-
- lib/lafcadio/
|
34
|
+
- lib/lafcadio
|
35
|
+
- lib/lafcadio.rb
|
36
|
+
- lib/lafcadio.rb~
|
37
|
+
- lib/lafcadio/dateTime.rb~
|
38
|
+
- lib/lafcadio/depend.rb
|
39
|
+
- lib/lafcadio/depend.rb~
|
40
|
+
- lib/lafcadio/domain.rb
|
41
|
+
- lib/lafcadio/domain.rb~
|
42
|
+
- lib/lafcadio/mock.rb
|
43
|
+
- lib/lafcadio/mock.rb~
|
44
|
+
- lib/lafcadio/objectField.rb
|
45
|
+
- lib/lafcadio/objectField.rb~
|
46
|
+
- lib/lafcadio/objectStore.rb
|
47
|
+
- lib/lafcadio/objectStore.rb.~1.64.~
|
48
|
+
- lib/lafcadio/objectStore.rb~
|
49
|
+
- lib/lafcadio/query.rb
|
50
|
+
- lib/lafcadio/query.rb~
|
51
|
+
- lib/lafcadio/schema.rb
|
52
|
+
- lib/lafcadio/schema.rb~
|
53
|
+
- lib/lafcadio/test
|
54
|
+
- lib/lafcadio/test.rb
|
55
|
+
- lib/lafcadio/test.rb~
|
56
|
+
- lib/lafcadio/util.rb
|
57
|
+
- lib/lafcadio/util.rb~
|
58
|
+
- lib/lafcadio/test/testconfig.dat
|
59
|
+
- lib/lafcadio/test/testconfig.dat~
|
48
60
|
test_files: []
|
49
|
-
|
50
61
|
rdoc_options: []
|
51
|
-
|
52
62
|
extra_rdoc_files: []
|
53
|
-
|
54
63
|
executables:
|
55
|
-
- lafcadio_schema
|
64
|
+
- lafcadio_schema
|
56
65
|
extensions: []
|
57
|
-
|
58
66
|
requirements: []
|
59
|
-
|
60
67
|
dependencies:
|
61
|
-
- !ruby/object:Gem::Dependency
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
- !ruby/object:Gem::
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: contxtlservice
|
70
|
+
version_requirement:
|
71
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
72
|
+
requirements:
|
73
|
+
-
|
74
|
+
- ">"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 0.0.0
|
77
|
+
version:
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: englishext
|
80
|
+
version_requirement:
|
81
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
82
|
+
requirements:
|
83
|
+
-
|
84
|
+
- ">"
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 0.0.0
|
87
|
+
version:
|
88
|
+
- !ruby/object:Gem::Dependency
|
89
|
+
name: extensions
|
90
|
+
version_requirement:
|
91
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
92
|
+
requirements:
|
93
|
+
-
|
94
|
+
- ">"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.0.0
|
97
|
+
version:
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: log4r
|
100
|
+
version_requirement:
|
101
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
102
|
+
requirements:
|
103
|
+
-
|
104
|
+
- ">"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 0.0.0
|
107
|
+
version:
|
108
|
+
- !ruby/object:Gem::Dependency
|
109
|
+
name: month
|
110
|
+
version_requirement:
|
111
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
112
|
+
requirements:
|
113
|
+
-
|
114
|
+
- ">"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 0.0.0
|
117
|
+
version:
|
118
|
+
- !ruby/object:Gem::Dependency
|
119
|
+
name: queuehash
|
120
|
+
version_requirement:
|
121
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
122
|
+
requirements:
|
123
|
+
-
|
124
|
+
- ">"
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: 0.0.0
|
127
|
+
version:
|
128
|
+
- !ruby/object:Gem::Dependency
|
129
|
+
name: uscommerce
|
130
|
+
version_requirement:
|
131
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
132
|
+
requirements:
|
133
|
+
-
|
134
|
+
- ">"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: 0.0.0
|
137
|
+
version:
|