wayne-friendly 0.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.
Files changed (136) hide show
  1. data/.document +2 -0
  2. data/.gitignore +26 -0
  3. data/APACHE-LICENSE +202 -0
  4. data/CHANGELOG.md +28 -0
  5. data/CONTRIBUTORS.md +7 -0
  6. data/LICENSE +20 -0
  7. data/README.md +288 -0
  8. data/Rakefile +68 -0
  9. data/TODO.md +5 -0
  10. data/VERSION +1 -0
  11. data/examples/friendly.yml +7 -0
  12. data/friendly.gemspec +240 -0
  13. data/lib/friendly.rb +58 -0
  14. data/lib/friendly/associations.rb +7 -0
  15. data/lib/friendly/associations/association.rb +34 -0
  16. data/lib/friendly/associations/set.rb +37 -0
  17. data/lib/friendly/attribute.rb +98 -0
  18. data/lib/friendly/boolean.rb +10 -0
  19. data/lib/friendly/cache.rb +24 -0
  20. data/lib/friendly/cache/by_id.rb +33 -0
  21. data/lib/friendly/data_store.rb +73 -0
  22. data/lib/friendly/document.rb +70 -0
  23. data/lib/friendly/document/associations.rb +50 -0
  24. data/lib/friendly/document/attributes.rb +114 -0
  25. data/lib/friendly/document/convenience.rb +41 -0
  26. data/lib/friendly/document/mixin.rb +15 -0
  27. data/lib/friendly/document/scoping.rb +66 -0
  28. data/lib/friendly/document/storage.rb +63 -0
  29. data/lib/friendly/document_table.rb +56 -0
  30. data/lib/friendly/index.rb +73 -0
  31. data/lib/friendly/indexer.rb +50 -0
  32. data/lib/friendly/memcached.rb +48 -0
  33. data/lib/friendly/newrelic.rb +6 -0
  34. data/lib/friendly/query.rb +42 -0
  35. data/lib/friendly/scope.rb +100 -0
  36. data/lib/friendly/scope_proxy.rb +43 -0
  37. data/lib/friendly/sequel_monkey_patches.rb +34 -0
  38. data/lib/friendly/storage.rb +31 -0
  39. data/lib/friendly/storage_factory.rb +24 -0
  40. data/lib/friendly/storage_proxy.rb +111 -0
  41. data/lib/friendly/table.rb +15 -0
  42. data/lib/friendly/table_creator.rb +50 -0
  43. data/lib/friendly/time.rb +14 -0
  44. data/lib/friendly/translator.rb +33 -0
  45. data/lib/friendly/uuid.rb +148 -0
  46. data/lib/tasks/friendly.rake +7 -0
  47. data/rails/init.rb +3 -0
  48. data/spec/config.yml.example +7 -0
  49. data/spec/fakes/data_store_fake.rb +29 -0
  50. data/spec/fakes/database_fake.rb +12 -0
  51. data/spec/fakes/dataset_fake.rb +28 -0
  52. data/spec/fakes/document.rb +18 -0
  53. data/spec/fakes/serializer_fake.rb +12 -0
  54. data/spec/fakes/time_fake.rb +12 -0
  55. data/spec/integration/ad_hoc_scopes_spec.rb +42 -0
  56. data/spec/integration/basic_object_lifecycle_spec.rb +114 -0
  57. data/spec/integration/batch_insertion_spec.rb +29 -0
  58. data/spec/integration/convenience_api_spec.rb +25 -0
  59. data/spec/integration/count_spec.rb +12 -0
  60. data/spec/integration/default_value_spec.rb +30 -0
  61. data/spec/integration/dirty_tracking_spec.rb +43 -0
  62. data/spec/integration/find_via_cache_spec.rb +101 -0
  63. data/spec/integration/finder_spec.rb +71 -0
  64. data/spec/integration/has_many_spec.rb +18 -0
  65. data/spec/integration/index_spec.rb +57 -0
  66. data/spec/integration/named_scope_spec.rb +34 -0
  67. data/spec/integration/offline_indexing_spec.rb +53 -0
  68. data/spec/integration/pagination_spec.rb +63 -0
  69. data/spec/integration/scope_chaining_spec.rb +22 -0
  70. data/spec/integration/table_creator_spec.rb +69 -0
  71. data/spec/integration/write_through_cache_spec.rb +53 -0
  72. data/spec/spec.opts +1 -0
  73. data/spec/spec_helper.rb +105 -0
  74. data/spec/unit/associations/association_spec.rb +57 -0
  75. data/spec/unit/associations/set_spec.rb +43 -0
  76. data/spec/unit/attribute_spec.rb +125 -0
  77. data/spec/unit/cache_by_id_spec.rb +102 -0
  78. data/spec/unit/cache_spec.rb +21 -0
  79. data/spec/unit/data_store_spec.rb +201 -0
  80. data/spec/unit/document/attributes_spec.rb +130 -0
  81. data/spec/unit/document_spec.rb +318 -0
  82. data/spec/unit/document_table_spec.rb +126 -0
  83. data/spec/unit/friendly_spec.rb +25 -0
  84. data/spec/unit/index_spec.rb +196 -0
  85. data/spec/unit/memcached_spec.rb +114 -0
  86. data/spec/unit/query_spec.rb +104 -0
  87. data/spec/unit/scope_proxy_spec.rb +44 -0
  88. data/spec/unit/scope_spec.rb +113 -0
  89. data/spec/unit/storage_factory_spec.rb +59 -0
  90. data/spec/unit/storage_proxy_spec.rb +244 -0
  91. data/spec/unit/translator_spec.rb +91 -0
  92. data/website/index.html +210 -0
  93. data/website/scripts/clipboard.swf +0 -0
  94. data/website/scripts/shBrushAS3.js +61 -0
  95. data/website/scripts/shBrushBash.js +66 -0
  96. data/website/scripts/shBrushCSharp.js +67 -0
  97. data/website/scripts/shBrushColdFusion.js +102 -0
  98. data/website/scripts/shBrushCpp.js +99 -0
  99. data/website/scripts/shBrushCss.js +93 -0
  100. data/website/scripts/shBrushDelphi.js +57 -0
  101. data/website/scripts/shBrushDiff.js +43 -0
  102. data/website/scripts/shBrushErlang.js +54 -0
  103. data/website/scripts/shBrushGroovy.js +69 -0
  104. data/website/scripts/shBrushJScript.js +52 -0
  105. data/website/scripts/shBrushJava.js +59 -0
  106. data/website/scripts/shBrushJavaFX.js +60 -0
  107. data/website/scripts/shBrushPerl.js +74 -0
  108. data/website/scripts/shBrushPhp.js +91 -0
  109. data/website/scripts/shBrushPlain.js +35 -0
  110. data/website/scripts/shBrushPowerShell.js +76 -0
  111. data/website/scripts/shBrushPython.js +66 -0
  112. data/website/scripts/shBrushRuby.js +57 -0
  113. data/website/scripts/shBrushScala.js +53 -0
  114. data/website/scripts/shBrushSql.js +68 -0
  115. data/website/scripts/shBrushVb.js +58 -0
  116. data/website/scripts/shBrushXml.js +71 -0
  117. data/website/scripts/shCore.js +30 -0
  118. data/website/scripts/shLegacy.js +30 -0
  119. data/website/styles/friendly.css +103 -0
  120. data/website/styles/help.png +0 -0
  121. data/website/styles/ie.css +35 -0
  122. data/website/styles/magnifier.png +0 -0
  123. data/website/styles/page_white_code.png +0 -0
  124. data/website/styles/page_white_copy.png +0 -0
  125. data/website/styles/print.css +29 -0
  126. data/website/styles/printer.png +0 -0
  127. data/website/styles/screen.css +257 -0
  128. data/website/styles/shCore.css +330 -0
  129. data/website/styles/shThemeDefault.css +173 -0
  130. data/website/styles/shThemeDjango.css +176 -0
  131. data/website/styles/shThemeEclipse.css +190 -0
  132. data/website/styles/shThemeEmacs.css +175 -0
  133. data/website/styles/shThemeFadeToGrey.css +177 -0
  134. data/website/styles/shThemeMidnight.css +175 -0
  135. data/website/styles/shThemeRDark.css +175 -0
  136. metadata +337 -0
@@ -0,0 +1,175 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.1.364 (October 15 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU Lesser General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/copyleft/lesser.html>.
29
+ */
30
+ /**
31
+ * RDark SyntaxHighlighter theme based on theme by Radu Dineiu
32
+ * http://www.vim.org/scripts/script.php?script_id=1732
33
+ */
34
+
35
+ /************************************
36
+ * Interface elements.
37
+ ************************************/
38
+
39
+ .syntaxhighlighter
40
+ {
41
+ background-color: #1B2426 !important;
42
+ }
43
+
44
+ /* Gutter line numbers */
45
+ .syntaxhighlighter .line .number
46
+ {
47
+ color: #B9BDB6 !important;
48
+ }
49
+
50
+ /* Add border to the lines */
51
+ .syntaxhighlighter .line .content
52
+ {
53
+ border-left: 3px solid #435A5F !important;
54
+ color: #B9BDB6 !important;
55
+ }
56
+
57
+ .syntaxhighlighter.printing .line .content
58
+ {
59
+ border: 0 !important;
60
+ }
61
+
62
+ /* First line */
63
+ .syntaxhighlighter .line.alt1
64
+ {
65
+ background-color: #1B2426 !important;
66
+ }
67
+
68
+ /* Second line */
69
+ .syntaxhighlighter .line.alt2
70
+ {
71
+ background-color: #1B2426 !important;
72
+ }
73
+
74
+ /* Highlighed line number */
75
+ .syntaxhighlighter .line.highlighted .number
76
+ {
77
+ background-color: #435A5F !important;
78
+ color: #fff !important;
79
+ }
80
+
81
+ /* Highlighed line */
82
+ .syntaxhighlighter .line.highlighted.alt1,
83
+ .syntaxhighlighter .line.highlighted.alt2
84
+ {
85
+ background-color: #435A5F !important;
86
+ }
87
+
88
+ .syntaxhighlighter .toolbar
89
+ {
90
+ background-color: #1B2426 !important;
91
+ }
92
+
93
+ .syntaxhighlighter .toolbar a
94
+ {
95
+ color: #646763 !important;
96
+ }
97
+
98
+ .syntaxhighlighter .toolbar a:hover
99
+ {
100
+ color: #E0E8FF !important;
101
+ }
102
+
103
+ /************************************
104
+ * Actual syntax highlighter colors.
105
+ ************************************/
106
+ .syntaxhighlighter .plain,
107
+ .syntaxhighlighter .plain a
108
+ {
109
+ color: #B9BDB6 !important;
110
+ }
111
+
112
+ .syntaxhighlighter .comments,
113
+ .syntaxhighlighter .comments a
114
+ {
115
+ color: #878A85 !important;
116
+ }
117
+
118
+ .syntaxhighlighter .string,
119
+ .syntaxhighlighter .string a
120
+ {
121
+ color: #5CE638 !important;
122
+ }
123
+
124
+ .syntaxhighlighter .keyword
125
+ {
126
+ color: #5BA1CF !important;
127
+ }
128
+
129
+ .syntaxhighlighter .preprocessor
130
+ {
131
+ color: #435A5F !important;
132
+ }
133
+
134
+ .syntaxhighlighter .variable
135
+ {
136
+ color: #FFAA3E !important;
137
+ }
138
+
139
+ .syntaxhighlighter .value
140
+ {
141
+ color: #090 !important;
142
+ }
143
+
144
+ .syntaxhighlighter .functions
145
+ {
146
+ color: #FFAA3E !important;
147
+ }
148
+
149
+ .syntaxhighlighter .constants
150
+ {
151
+ color: #E0E8FF !important;
152
+ }
153
+
154
+ .syntaxhighlighter .script
155
+ {
156
+ background-color: #435A5F !important;
157
+ }
158
+
159
+ .syntaxhighlighter .color1,
160
+ .syntaxhighlighter .color1 a
161
+ {
162
+ color: #E0E8FF !important;
163
+ }
164
+
165
+ .syntaxhighlighter .color2,
166
+ .syntaxhighlighter .color2 a
167
+ {
168
+ color: #FFFFFF !important;
169
+ }
170
+
171
+ .syntaxhighlighter .color3,
172
+ .syntaxhighlighter .color3 a
173
+ {
174
+ color: #FFAA3E !important;
175
+ }
metadata ADDED
@@ -0,0 +1,337 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wayne-friendly
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 5
8
+ - 1
9
+ version: 0.5.1
10
+ platform: ruby
11
+ authors:
12
+ - James Golick
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-04-09 00:00:00 +08:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rspec
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 1
29
+ - 2
30
+ - 9
31
+ version: 1.2.9
32
+ type: :development
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: cucumber
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 0
43
+ version: "0"
44
+ type: :development
45
+ version_requirements: *id002
46
+ - !ruby/object:Gem::Dependency
47
+ name: jferris-mocha
48
+ prerelease: false
49
+ requirement: &id003 !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ segments:
54
+ - 0
55
+ version: "0"
56
+ type: :development
57
+ version_requirements: *id003
58
+ - !ruby/object:Gem::Dependency
59
+ name: memcached
60
+ prerelease: false
61
+ requirement: &id004 !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ segments:
66
+ - 0
67
+ version: "0"
68
+ type: :development
69
+ version_requirements: *id004
70
+ - !ruby/object:Gem::Dependency
71
+ name: sequel
72
+ prerelease: false
73
+ requirement: &id005 !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ segments:
78
+ - 3
79
+ - 7
80
+ - 0
81
+ version: 3.7.0
82
+ type: :runtime
83
+ version_requirements: *id005
84
+ - !ruby/object:Gem::Dependency
85
+ name: json
86
+ prerelease: false
87
+ requirement: &id006 !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ segments:
92
+ - 0
93
+ version: "0"
94
+ type: :runtime
95
+ version_requirements: *id006
96
+ - !ruby/object:Gem::Dependency
97
+ name: activesupport
98
+ prerelease: false
99
+ requirement: &id007 !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ segments:
104
+ - 0
105
+ version: "0"
106
+ type: :runtime
107
+ version_requirements: *id007
108
+ - !ruby/object:Gem::Dependency
109
+ name: will_paginate
110
+ prerelease: false
111
+ requirement: &id008 !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ segments:
116
+ - 0
117
+ version: "0"
118
+ type: :runtime
119
+ version_requirements: *id008
120
+ description: Fork of Friendly. Uses the C extension variant of the JSON gem instead of the pure ruby one.
121
+ email: github@wego.com
122
+ executables: []
123
+
124
+ extensions: []
125
+
126
+ extra_rdoc_files:
127
+ - LICENSE
128
+ - README.md
129
+ files:
130
+ - .document
131
+ - .gitignore
132
+ - APACHE-LICENSE
133
+ - CHANGELOG.md
134
+ - CONTRIBUTORS.md
135
+ - LICENSE
136
+ - README.md
137
+ - Rakefile
138
+ - TODO.md
139
+ - VERSION
140
+ - examples/friendly.yml
141
+ - friendly.gemspec
142
+ - lib/friendly.rb
143
+ - lib/friendly/associations.rb
144
+ - lib/friendly/associations/association.rb
145
+ - lib/friendly/associations/set.rb
146
+ - lib/friendly/attribute.rb
147
+ - lib/friendly/boolean.rb
148
+ - lib/friendly/cache.rb
149
+ - lib/friendly/cache/by_id.rb
150
+ - lib/friendly/data_store.rb
151
+ - lib/friendly/document.rb
152
+ - lib/friendly/document/associations.rb
153
+ - lib/friendly/document/attributes.rb
154
+ - lib/friendly/document/convenience.rb
155
+ - lib/friendly/document/mixin.rb
156
+ - lib/friendly/document/scoping.rb
157
+ - lib/friendly/document/storage.rb
158
+ - lib/friendly/document_table.rb
159
+ - lib/friendly/index.rb
160
+ - lib/friendly/indexer.rb
161
+ - lib/friendly/memcached.rb
162
+ - lib/friendly/newrelic.rb
163
+ - lib/friendly/query.rb
164
+ - lib/friendly/scope.rb
165
+ - lib/friendly/scope_proxy.rb
166
+ - lib/friendly/sequel_monkey_patches.rb
167
+ - lib/friendly/storage.rb
168
+ - lib/friendly/storage_factory.rb
169
+ - lib/friendly/storage_proxy.rb
170
+ - lib/friendly/table.rb
171
+ - lib/friendly/table_creator.rb
172
+ - lib/friendly/time.rb
173
+ - lib/friendly/translator.rb
174
+ - lib/friendly/uuid.rb
175
+ - lib/tasks/friendly.rake
176
+ - rails/init.rb
177
+ - spec/config.yml.example
178
+ - spec/fakes/data_store_fake.rb
179
+ - spec/fakes/database_fake.rb
180
+ - spec/fakes/dataset_fake.rb
181
+ - spec/fakes/document.rb
182
+ - spec/fakes/serializer_fake.rb
183
+ - spec/fakes/time_fake.rb
184
+ - spec/integration/ad_hoc_scopes_spec.rb
185
+ - spec/integration/basic_object_lifecycle_spec.rb
186
+ - spec/integration/batch_insertion_spec.rb
187
+ - spec/integration/convenience_api_spec.rb
188
+ - spec/integration/count_spec.rb
189
+ - spec/integration/default_value_spec.rb
190
+ - spec/integration/dirty_tracking_spec.rb
191
+ - spec/integration/find_via_cache_spec.rb
192
+ - spec/integration/finder_spec.rb
193
+ - spec/integration/has_many_spec.rb
194
+ - spec/integration/index_spec.rb
195
+ - spec/integration/named_scope_spec.rb
196
+ - spec/integration/offline_indexing_spec.rb
197
+ - spec/integration/pagination_spec.rb
198
+ - spec/integration/scope_chaining_spec.rb
199
+ - spec/integration/table_creator_spec.rb
200
+ - spec/integration/write_through_cache_spec.rb
201
+ - spec/spec.opts
202
+ - spec/spec_helper.rb
203
+ - spec/unit/associations/association_spec.rb
204
+ - spec/unit/associations/set_spec.rb
205
+ - spec/unit/attribute_spec.rb
206
+ - spec/unit/cache_by_id_spec.rb
207
+ - spec/unit/cache_spec.rb
208
+ - spec/unit/data_store_spec.rb
209
+ - spec/unit/document/attributes_spec.rb
210
+ - spec/unit/document_spec.rb
211
+ - spec/unit/document_table_spec.rb
212
+ - spec/unit/friendly_spec.rb
213
+ - spec/unit/index_spec.rb
214
+ - spec/unit/memcached_spec.rb
215
+ - spec/unit/query_spec.rb
216
+ - spec/unit/scope_proxy_spec.rb
217
+ - spec/unit/scope_spec.rb
218
+ - spec/unit/storage_factory_spec.rb
219
+ - spec/unit/storage_proxy_spec.rb
220
+ - spec/unit/translator_spec.rb
221
+ - website/index.html
222
+ - website/scripts/clipboard.swf
223
+ - website/scripts/shBrushAS3.js
224
+ - website/scripts/shBrushBash.js
225
+ - website/scripts/shBrushCSharp.js
226
+ - website/scripts/shBrushColdFusion.js
227
+ - website/scripts/shBrushCpp.js
228
+ - website/scripts/shBrushCss.js
229
+ - website/scripts/shBrushDelphi.js
230
+ - website/scripts/shBrushDiff.js
231
+ - website/scripts/shBrushErlang.js
232
+ - website/scripts/shBrushGroovy.js
233
+ - website/scripts/shBrushJScript.js
234
+ - website/scripts/shBrushJava.js
235
+ - website/scripts/shBrushJavaFX.js
236
+ - website/scripts/shBrushPerl.js
237
+ - website/scripts/shBrushPhp.js
238
+ - website/scripts/shBrushPlain.js
239
+ - website/scripts/shBrushPowerShell.js
240
+ - website/scripts/shBrushPython.js
241
+ - website/scripts/shBrushRuby.js
242
+ - website/scripts/shBrushScala.js
243
+ - website/scripts/shBrushSql.js
244
+ - website/scripts/shBrushVb.js
245
+ - website/scripts/shBrushXml.js
246
+ - website/scripts/shCore.js
247
+ - website/scripts/shLegacy.js
248
+ - website/styles/friendly.css
249
+ - website/styles/help.png
250
+ - website/styles/ie.css
251
+ - website/styles/magnifier.png
252
+ - website/styles/page_white_code.png
253
+ - website/styles/page_white_copy.png
254
+ - website/styles/print.css
255
+ - website/styles/printer.png
256
+ - website/styles/screen.css
257
+ - website/styles/shCore.css
258
+ - website/styles/shThemeDefault.css
259
+ - website/styles/shThemeDjango.css
260
+ - website/styles/shThemeEclipse.css
261
+ - website/styles/shThemeEmacs.css
262
+ - website/styles/shThemeFadeToGrey.css
263
+ - website/styles/shThemeMidnight.css
264
+ - website/styles/shThemeRDark.css
265
+ has_rdoc: true
266
+ homepage: http://friendlyorm.com
267
+ licenses: []
268
+
269
+ post_install_message:
270
+ rdoc_options:
271
+ - --charset=UTF-8
272
+ require_paths:
273
+ - lib
274
+ required_ruby_version: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - ">="
277
+ - !ruby/object:Gem::Version
278
+ segments:
279
+ - 0
280
+ version: "0"
281
+ required_rubygems_version: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - ">="
284
+ - !ruby/object:Gem::Version
285
+ segments:
286
+ - 0
287
+ version: "0"
288
+ requirements: []
289
+
290
+ rubyforge_project:
291
+ rubygems_version: 1.3.6
292
+ signing_key:
293
+ specification_version: 3
294
+ summary: NoSQL with MySQL in Ruby
295
+ test_files:
296
+ - spec/fakes/data_store_fake.rb
297
+ - spec/fakes/database_fake.rb
298
+ - spec/fakes/dataset_fake.rb
299
+ - spec/fakes/document.rb
300
+ - spec/fakes/serializer_fake.rb
301
+ - spec/fakes/time_fake.rb
302
+ - spec/integration/ad_hoc_scopes_spec.rb
303
+ - spec/integration/basic_object_lifecycle_spec.rb
304
+ - spec/integration/batch_insertion_spec.rb
305
+ - spec/integration/convenience_api_spec.rb
306
+ - spec/integration/count_spec.rb
307
+ - spec/integration/default_value_spec.rb
308
+ - spec/integration/dirty_tracking_spec.rb
309
+ - spec/integration/find_via_cache_spec.rb
310
+ - spec/integration/finder_spec.rb
311
+ - spec/integration/has_many_spec.rb
312
+ - spec/integration/index_spec.rb
313
+ - spec/integration/named_scope_spec.rb
314
+ - spec/integration/offline_indexing_spec.rb
315
+ - spec/integration/pagination_spec.rb
316
+ - spec/integration/scope_chaining_spec.rb
317
+ - spec/integration/table_creator_spec.rb
318
+ - spec/integration/write_through_cache_spec.rb
319
+ - spec/spec_helper.rb
320
+ - spec/unit/associations/association_spec.rb
321
+ - spec/unit/associations/set_spec.rb
322
+ - spec/unit/attribute_spec.rb
323
+ - spec/unit/cache_by_id_spec.rb
324
+ - spec/unit/cache_spec.rb
325
+ - spec/unit/data_store_spec.rb
326
+ - spec/unit/document/attributes_spec.rb
327
+ - spec/unit/document_spec.rb
328
+ - spec/unit/document_table_spec.rb
329
+ - spec/unit/friendly_spec.rb
330
+ - spec/unit/index_spec.rb
331
+ - spec/unit/memcached_spec.rb
332
+ - spec/unit/query_spec.rb
333
+ - spec/unit/scope_proxy_spec.rb
334
+ - spec/unit/scope_spec.rb
335
+ - spec/unit/storage_factory_spec.rb
336
+ - spec/unit/storage_proxy_spec.rb
337
+ - spec/unit/translator_spec.rb