friendly_postgres 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. data/.document +2 -0
  2. data/.gitignore +26 -0
  3. data/APACHE-LICENSE +202 -0
  4. data/CHANGELOG.md +19 -0
  5. data/CONTRIBUTORS.md +7 -0
  6. data/LICENSE +20 -0
  7. data/README.md +265 -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 +232 -0
  13. data/lib/friendly.rb +54 -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 +91 -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/config.rb +5 -0
  22. data/lib/friendly/data_store.rb +72 -0
  23. data/lib/friendly/document.rb +257 -0
  24. data/lib/friendly/document_table.rb +56 -0
  25. data/lib/friendly/index.rb +73 -0
  26. data/lib/friendly/memcached.rb +48 -0
  27. data/lib/friendly/named_scope.rb +17 -0
  28. data/lib/friendly/newrelic.rb +6 -0
  29. data/lib/friendly/query.rb +42 -0
  30. data/lib/friendly/scope.rb +100 -0
  31. data/lib/friendly/scope_proxy.rb +45 -0
  32. data/lib/friendly/sequel_monkey_patches.rb +34 -0
  33. data/lib/friendly/storage.rb +31 -0
  34. data/lib/friendly/storage_factory.rb +24 -0
  35. data/lib/friendly/storage_proxy.rb +103 -0
  36. data/lib/friendly/table.rb +15 -0
  37. data/lib/friendly/table_creator.rb +48 -0
  38. data/lib/friendly/time.rb +14 -0
  39. data/lib/friendly/translator.rb +32 -0
  40. data/lib/friendly/uuid.rb +148 -0
  41. data/rails/init.rb +3 -0
  42. data/spec/config.yml.example +7 -0
  43. data/spec/fakes/data_store_fake.rb +29 -0
  44. data/spec/fakes/database_fake.rb +12 -0
  45. data/spec/fakes/dataset_fake.rb +28 -0
  46. data/spec/fakes/document.rb +18 -0
  47. data/spec/fakes/serializer_fake.rb +12 -0
  48. data/spec/fakes/time_fake.rb +12 -0
  49. data/spec/integration/ad_hoc_scopes_spec.rb +42 -0
  50. data/spec/integration/basic_object_lifecycle_spec.rb +114 -0
  51. data/spec/integration/batch_insertion_spec.rb +29 -0
  52. data/spec/integration/convenience_api_spec.rb +25 -0
  53. data/spec/integration/count_spec.rb +12 -0
  54. data/spec/integration/default_value_spec.rb +15 -0
  55. data/spec/integration/find_via_cache_spec.rb +101 -0
  56. data/spec/integration/finder_spec.rb +64 -0
  57. data/spec/integration/has_many_spec.rb +18 -0
  58. data/spec/integration/index_spec.rb +57 -0
  59. data/spec/integration/named_scope_spec.rb +34 -0
  60. data/spec/integration/pagination_spec.rb +63 -0
  61. data/spec/integration/scope_chaining_spec.rb +22 -0
  62. data/spec/integration/table_creator_spec.rb +64 -0
  63. data/spec/integration/write_through_cache_spec.rb +53 -0
  64. data/spec/spec.opts +1 -0
  65. data/spec/spec_helper.rb +103 -0
  66. data/spec/unit/associations/association_spec.rb +57 -0
  67. data/spec/unit/associations/set_spec.rb +43 -0
  68. data/spec/unit/attribute_spec.rb +105 -0
  69. data/spec/unit/cache_by_id_spec.rb +102 -0
  70. data/spec/unit/cache_spec.rb +21 -0
  71. data/spec/unit/config_spec.rb +4 -0
  72. data/spec/unit/data_store_spec.rb +188 -0
  73. data/spec/unit/document_spec.rb +358 -0
  74. data/spec/unit/document_table_spec.rb +126 -0
  75. data/spec/unit/friendly_spec.rb +25 -0
  76. data/spec/unit/index_spec.rb +196 -0
  77. data/spec/unit/memcached_spec.rb +114 -0
  78. data/spec/unit/named_scope_spec.rb +16 -0
  79. data/spec/unit/query_spec.rb +104 -0
  80. data/spec/unit/scope_proxy_spec.rb +44 -0
  81. data/spec/unit/scope_spec.rb +113 -0
  82. data/spec/unit/storage_factory_spec.rb +59 -0
  83. data/spec/unit/storage_proxy_spec.rb +218 -0
  84. data/spec/unit/translator_spec.rb +96 -0
  85. data/website/index.html +210 -0
  86. data/website/scripts/clipboard.swf +0 -0
  87. data/website/scripts/shBrushAS3.js +61 -0
  88. data/website/scripts/shBrushBash.js +66 -0
  89. data/website/scripts/shBrushCSharp.js +67 -0
  90. data/website/scripts/shBrushColdFusion.js +102 -0
  91. data/website/scripts/shBrushCpp.js +99 -0
  92. data/website/scripts/shBrushCss.js +93 -0
  93. data/website/scripts/shBrushDelphi.js +57 -0
  94. data/website/scripts/shBrushDiff.js +43 -0
  95. data/website/scripts/shBrushErlang.js +54 -0
  96. data/website/scripts/shBrushGroovy.js +69 -0
  97. data/website/scripts/shBrushJScript.js +52 -0
  98. data/website/scripts/shBrushJava.js +59 -0
  99. data/website/scripts/shBrushJavaFX.js +60 -0
  100. data/website/scripts/shBrushPerl.js +74 -0
  101. data/website/scripts/shBrushPhp.js +91 -0
  102. data/website/scripts/shBrushPlain.js +35 -0
  103. data/website/scripts/shBrushPowerShell.js +76 -0
  104. data/website/scripts/shBrushPython.js +66 -0
  105. data/website/scripts/shBrushRuby.js +57 -0
  106. data/website/scripts/shBrushScala.js +53 -0
  107. data/website/scripts/shBrushSql.js +68 -0
  108. data/website/scripts/shBrushVb.js +58 -0
  109. data/website/scripts/shBrushXml.js +71 -0
  110. data/website/scripts/shCore.js +30 -0
  111. data/website/scripts/shLegacy.js +30 -0
  112. data/website/styles/friendly.css +103 -0
  113. data/website/styles/help.png +0 -0
  114. data/website/styles/ie.css +35 -0
  115. data/website/styles/magnifier.png +0 -0
  116. data/website/styles/page_white_code.png +0 -0
  117. data/website/styles/page_white_copy.png +0 -0
  118. data/website/styles/print.css +29 -0
  119. data/website/styles/printer.png +0 -0
  120. data/website/styles/screen.css +257 -0
  121. data/website/styles/shCore.css +330 -0
  122. data/website/styles/shThemeDefault.css +173 -0
  123. data/website/styles/shThemeDjango.css +176 -0
  124. data/website/styles/shThemeEclipse.css +190 -0
  125. data/website/styles/shThemeEmacs.css +175 -0
  126. data/website/styles/shThemeFadeToGrey.css +177 -0
  127. data/website/styles/shThemeMidnight.css +175 -0
  128. data/website/styles/shThemeRDark.css +175 -0
  129. metadata +302 -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,302 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: friendly_postgres
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.3
5
+ platform: ruby
6
+ authors:
7
+ - James Golick
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-01-09 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.9
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: cucumber
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: jferris-mocha
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: memcached
47
+ type: :development
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: "0"
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: sequel
57
+ type: :runtime
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 3.7.0
64
+ version:
65
+ - !ruby/object:Gem::Dependency
66
+ name: json_pure
67
+ type: :runtime
68
+ version_requirement:
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
75
+ - !ruby/object:Gem::Dependency
76
+ name: activesupport
77
+ type: :runtime
78
+ version_requirement:
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ version:
85
+ - !ruby/object:Gem::Dependency
86
+ name: will_paginate
87
+ type: :runtime
88
+ version_requirement:
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: "0"
94
+ version:
95
+ description: ""
96
+ email: jamesgolick@gmail.com
97
+ executables: []
98
+
99
+ extensions: []
100
+
101
+ extra_rdoc_files:
102
+ - LICENSE
103
+ - README.md
104
+ files:
105
+ - .document
106
+ - .gitignore
107
+ - APACHE-LICENSE
108
+ - CHANGELOG.md
109
+ - CONTRIBUTORS.md
110
+ - LICENSE
111
+ - README.md
112
+ - Rakefile
113
+ - TODO.md
114
+ - VERSION
115
+ - examples/friendly.yml
116
+ - friendly.gemspec
117
+ - lib/friendly.rb
118
+ - lib/friendly/associations.rb
119
+ - lib/friendly/associations/association.rb
120
+ - lib/friendly/associations/set.rb
121
+ - lib/friendly/attribute.rb
122
+ - lib/friendly/boolean.rb
123
+ - lib/friendly/cache.rb
124
+ - lib/friendly/cache/by_id.rb
125
+ - lib/friendly/config.rb
126
+ - lib/friendly/data_store.rb
127
+ - lib/friendly/document.rb
128
+ - lib/friendly/document_table.rb
129
+ - lib/friendly/index.rb
130
+ - lib/friendly/memcached.rb
131
+ - lib/friendly/named_scope.rb
132
+ - lib/friendly/newrelic.rb
133
+ - lib/friendly/query.rb
134
+ - lib/friendly/scope.rb
135
+ - lib/friendly/scope_proxy.rb
136
+ - lib/friendly/sequel_monkey_patches.rb
137
+ - lib/friendly/storage.rb
138
+ - lib/friendly/storage_factory.rb
139
+ - lib/friendly/storage_proxy.rb
140
+ - lib/friendly/table.rb
141
+ - lib/friendly/table_creator.rb
142
+ - lib/friendly/time.rb
143
+ - lib/friendly/translator.rb
144
+ - lib/friendly/uuid.rb
145
+ - rails/init.rb
146
+ - spec/config.yml.example
147
+ - spec/fakes/data_store_fake.rb
148
+ - spec/fakes/database_fake.rb
149
+ - spec/fakes/dataset_fake.rb
150
+ - spec/fakes/document.rb
151
+ - spec/fakes/serializer_fake.rb
152
+ - spec/fakes/time_fake.rb
153
+ - spec/integration/ad_hoc_scopes_spec.rb
154
+ - spec/integration/basic_object_lifecycle_spec.rb
155
+ - spec/integration/batch_insertion_spec.rb
156
+ - spec/integration/convenience_api_spec.rb
157
+ - spec/integration/count_spec.rb
158
+ - spec/integration/default_value_spec.rb
159
+ - spec/integration/find_via_cache_spec.rb
160
+ - spec/integration/finder_spec.rb
161
+ - spec/integration/has_many_spec.rb
162
+ - spec/integration/index_spec.rb
163
+ - spec/integration/named_scope_spec.rb
164
+ - spec/integration/pagination_spec.rb
165
+ - spec/integration/scope_chaining_spec.rb
166
+ - spec/integration/table_creator_spec.rb
167
+ - spec/integration/write_through_cache_spec.rb
168
+ - spec/spec.opts
169
+ - spec/spec_helper.rb
170
+ - spec/unit/associations/association_spec.rb
171
+ - spec/unit/associations/set_spec.rb
172
+ - spec/unit/attribute_spec.rb
173
+ - spec/unit/cache_by_id_spec.rb
174
+ - spec/unit/cache_spec.rb
175
+ - spec/unit/config_spec.rb
176
+ - spec/unit/data_store_spec.rb
177
+ - spec/unit/document_spec.rb
178
+ - spec/unit/document_table_spec.rb
179
+ - spec/unit/friendly_spec.rb
180
+ - spec/unit/index_spec.rb
181
+ - spec/unit/memcached_spec.rb
182
+ - spec/unit/named_scope_spec.rb
183
+ - spec/unit/query_spec.rb
184
+ - spec/unit/scope_proxy_spec.rb
185
+ - spec/unit/scope_spec.rb
186
+ - spec/unit/storage_factory_spec.rb
187
+ - spec/unit/storage_proxy_spec.rb
188
+ - spec/unit/translator_spec.rb
189
+ - website/index.html
190
+ - website/scripts/clipboard.swf
191
+ - website/scripts/shBrushAS3.js
192
+ - website/scripts/shBrushBash.js
193
+ - website/scripts/shBrushCSharp.js
194
+ - website/scripts/shBrushColdFusion.js
195
+ - website/scripts/shBrushCpp.js
196
+ - website/scripts/shBrushCss.js
197
+ - website/scripts/shBrushDelphi.js
198
+ - website/scripts/shBrushDiff.js
199
+ - website/scripts/shBrushErlang.js
200
+ - website/scripts/shBrushGroovy.js
201
+ - website/scripts/shBrushJScript.js
202
+ - website/scripts/shBrushJava.js
203
+ - website/scripts/shBrushJavaFX.js
204
+ - website/scripts/shBrushPerl.js
205
+ - website/scripts/shBrushPhp.js
206
+ - website/scripts/shBrushPlain.js
207
+ - website/scripts/shBrushPowerShell.js
208
+ - website/scripts/shBrushPython.js
209
+ - website/scripts/shBrushRuby.js
210
+ - website/scripts/shBrushScala.js
211
+ - website/scripts/shBrushSql.js
212
+ - website/scripts/shBrushVb.js
213
+ - website/scripts/shBrushXml.js
214
+ - website/scripts/shCore.js
215
+ - website/scripts/shLegacy.js
216
+ - website/styles/friendly.css
217
+ - website/styles/help.png
218
+ - website/styles/ie.css
219
+ - website/styles/magnifier.png
220
+ - website/styles/page_white_code.png
221
+ - website/styles/page_white_copy.png
222
+ - website/styles/print.css
223
+ - website/styles/printer.png
224
+ - website/styles/screen.css
225
+ - website/styles/shCore.css
226
+ - website/styles/shThemeDefault.css
227
+ - website/styles/shThemeDjango.css
228
+ - website/styles/shThemeEclipse.css
229
+ - website/styles/shThemeEmacs.css
230
+ - website/styles/shThemeFadeToGrey.css
231
+ - website/styles/shThemeMidnight.css
232
+ - website/styles/shThemeRDark.css
233
+ has_rdoc: true
234
+ homepage: http://friendlyorm.com
235
+ licenses: []
236
+
237
+ post_install_message:
238
+ rdoc_options:
239
+ - --charset=UTF-8
240
+ require_paths:
241
+ - lib
242
+ required_ruby_version: !ruby/object:Gem::Requirement
243
+ requirements:
244
+ - - ">="
245
+ - !ruby/object:Gem::Version
246
+ version: "0"
247
+ version:
248
+ required_rubygems_version: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - - ">="
251
+ - !ruby/object:Gem::Version
252
+ version: "0"
253
+ version:
254
+ requirements: []
255
+
256
+ rubyforge_project:
257
+ rubygems_version: 1.3.5
258
+ signing_key:
259
+ specification_version: 3
260
+ summary: NoSQL with MySQL in Ruby
261
+ test_files:
262
+ - spec/fakes/data_store_fake.rb
263
+ - spec/fakes/database_fake.rb
264
+ - spec/fakes/dataset_fake.rb
265
+ - spec/fakes/document.rb
266
+ - spec/fakes/serializer_fake.rb
267
+ - spec/fakes/time_fake.rb
268
+ - spec/integration/ad_hoc_scopes_spec.rb
269
+ - spec/integration/basic_object_lifecycle_spec.rb
270
+ - spec/integration/batch_insertion_spec.rb
271
+ - spec/integration/convenience_api_spec.rb
272
+ - spec/integration/count_spec.rb
273
+ - spec/integration/default_value_spec.rb
274
+ - spec/integration/find_via_cache_spec.rb
275
+ - spec/integration/finder_spec.rb
276
+ - spec/integration/has_many_spec.rb
277
+ - spec/integration/index_spec.rb
278
+ - spec/integration/named_scope_spec.rb
279
+ - spec/integration/pagination_spec.rb
280
+ - spec/integration/scope_chaining_spec.rb
281
+ - spec/integration/table_creator_spec.rb
282
+ - spec/integration/write_through_cache_spec.rb
283
+ - spec/spec_helper.rb
284
+ - spec/unit/associations/association_spec.rb
285
+ - spec/unit/associations/set_spec.rb
286
+ - spec/unit/attribute_spec.rb
287
+ - spec/unit/cache_by_id_spec.rb
288
+ - spec/unit/cache_spec.rb
289
+ - spec/unit/config_spec.rb
290
+ - spec/unit/data_store_spec.rb
291
+ - spec/unit/document_spec.rb
292
+ - spec/unit/document_table_spec.rb
293
+ - spec/unit/friendly_spec.rb
294
+ - spec/unit/index_spec.rb
295
+ - spec/unit/memcached_spec.rb
296
+ - spec/unit/named_scope_spec.rb
297
+ - spec/unit/query_spec.rb
298
+ - spec/unit/scope_proxy_spec.rb
299
+ - spec/unit/scope_spec.rb
300
+ - spec/unit/storage_factory_spec.rb
301
+ - spec/unit/storage_proxy_spec.rb
302
+ - spec/unit/translator_spec.rb