skalee-thinking-sphinx 1.3.14.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. data/LICENCE +20 -0
  2. data/README.textile +201 -0
  3. data/Rakefile +3 -0
  4. data/VERSION +1 -0
  5. data/contribute.rb +385 -0
  6. data/cucumber.yml +1 -0
  7. data/features/abstract_inheritance.feature +10 -0
  8. data/features/alternate_primary_key.feature +27 -0
  9. data/features/attribute_transformation.feature +22 -0
  10. data/features/attribute_updates.feature +51 -0
  11. data/features/deleting_instances.feature +67 -0
  12. data/features/direct_attributes.feature +11 -0
  13. data/features/excerpts.feature +13 -0
  14. data/features/extensible_delta_indexing.feature +9 -0
  15. data/features/facets.feature +82 -0
  16. data/features/facets_across_model.feature +29 -0
  17. data/features/handling_edits.feature +92 -0
  18. data/features/retry_stale_indexes.feature +24 -0
  19. data/features/searching_across_models.feature +20 -0
  20. data/features/searching_by_index.feature +40 -0
  21. data/features/searching_by_model.feature +175 -0
  22. data/features/searching_with_find_arguments.feature +56 -0
  23. data/features/sphinx_detection.feature +25 -0
  24. data/features/sphinx_scopes.feature +42 -0
  25. data/features/step_definitions/alpha_steps.rb +16 -0
  26. data/features/step_definitions/beta_steps.rb +7 -0
  27. data/features/step_definitions/common_steps.rb +188 -0
  28. data/features/step_definitions/extensible_delta_indexing_steps.rb +7 -0
  29. data/features/step_definitions/facet_steps.rb +96 -0
  30. data/features/step_definitions/find_arguments_steps.rb +36 -0
  31. data/features/step_definitions/gamma_steps.rb +15 -0
  32. data/features/step_definitions/scope_steps.rb +15 -0
  33. data/features/step_definitions/search_steps.rb +89 -0
  34. data/features/step_definitions/sphinx_steps.rb +35 -0
  35. data/features/sti_searching.feature +19 -0
  36. data/features/support/database.example.yml +3 -0
  37. data/features/support/db/.gitignore +1 -0
  38. data/features/support/db/fixtures/alphas.rb +10 -0
  39. data/features/support/db/fixtures/authors.rb +1 -0
  40. data/features/support/db/fixtures/betas.rb +10 -0
  41. data/features/support/db/fixtures/boxes.rb +9 -0
  42. data/features/support/db/fixtures/categories.rb +1 -0
  43. data/features/support/db/fixtures/cats.rb +3 -0
  44. data/features/support/db/fixtures/comments.rb +24 -0
  45. data/features/support/db/fixtures/developers.rb +29 -0
  46. data/features/support/db/fixtures/dogs.rb +3 -0
  47. data/features/support/db/fixtures/extensible_betas.rb +10 -0
  48. data/features/support/db/fixtures/foxes.rb +3 -0
  49. data/features/support/db/fixtures/gammas.rb +10 -0
  50. data/features/support/db/fixtures/music.rb +4 -0
  51. data/features/support/db/fixtures/people.rb +1001 -0
  52. data/features/support/db/fixtures/posts.rb +6 -0
  53. data/features/support/db/fixtures/robots.rb +14 -0
  54. data/features/support/db/fixtures/tags.rb +27 -0
  55. data/features/support/db/migrations/create_alphas.rb +8 -0
  56. data/features/support/db/migrations/create_animals.rb +5 -0
  57. data/features/support/db/migrations/create_authors.rb +3 -0
  58. data/features/support/db/migrations/create_authors_posts.rb +6 -0
  59. data/features/support/db/migrations/create_betas.rb +5 -0
  60. data/features/support/db/migrations/create_boxes.rb +5 -0
  61. data/features/support/db/migrations/create_categories.rb +3 -0
  62. data/features/support/db/migrations/create_comments.rb +10 -0
  63. data/features/support/db/migrations/create_developers.rb +9 -0
  64. data/features/support/db/migrations/create_extensible_betas.rb +5 -0
  65. data/features/support/db/migrations/create_gammas.rb +3 -0
  66. data/features/support/db/migrations/create_genres.rb +3 -0
  67. data/features/support/db/migrations/create_music.rb +6 -0
  68. data/features/support/db/migrations/create_people.rb +13 -0
  69. data/features/support/db/migrations/create_posts.rb +5 -0
  70. data/features/support/db/migrations/create_robots.rb +4 -0
  71. data/features/support/db/migrations/create_taggings.rb +5 -0
  72. data/features/support/db/migrations/create_tags.rb +4 -0
  73. data/features/support/env.rb +21 -0
  74. data/features/support/lib/generic_delta_handler.rb +8 -0
  75. data/features/support/models/alpha.rb +22 -0
  76. data/features/support/models/animal.rb +5 -0
  77. data/features/support/models/author.rb +3 -0
  78. data/features/support/models/beta.rb +8 -0
  79. data/features/support/models/box.rb +8 -0
  80. data/features/support/models/cat.rb +3 -0
  81. data/features/support/models/category.rb +4 -0
  82. data/features/support/models/comment.rb +10 -0
  83. data/features/support/models/developer.rb +16 -0
  84. data/features/support/models/dog.rb +3 -0
  85. data/features/support/models/extensible_beta.rb +9 -0
  86. data/features/support/models/fox.rb +5 -0
  87. data/features/support/models/gamma.rb +5 -0
  88. data/features/support/models/genre.rb +3 -0
  89. data/features/support/models/medium.rb +5 -0
  90. data/features/support/models/music.rb +8 -0
  91. data/features/support/models/person.rb +23 -0
  92. data/features/support/models/post.rb +21 -0
  93. data/features/support/models/robot.rb +12 -0
  94. data/features/support/models/tag.rb +3 -0
  95. data/features/support/models/tagging.rb +4 -0
  96. data/ginger_scenarios.rb +28 -0
  97. data/init.rb +5 -0
  98. data/install.rb +5 -0
  99. data/lib/cucumber/thinking_sphinx/external_world.rb +8 -0
  100. data/lib/cucumber/thinking_sphinx/internal_world.rb +126 -0
  101. data/lib/cucumber/thinking_sphinx/sql_logger.rb +20 -0
  102. data/lib/thinking_sphinx/active_record/attribute_updates.rb +19 -0
  103. data/lib/thinking_sphinx/active_record/delta.rb +47 -0
  104. data/lib/thinking_sphinx/active_record/has_many_association.rb +29 -0
  105. data/lib/thinking_sphinx/active_record/scopes.rb +75 -0
  106. data/lib/thinking_sphinx/active_record.rb +348 -0
  107. data/lib/thinking_sphinx/adapters/abstract_adapter.rb +42 -0
  108. data/lib/thinking_sphinx/adapters/mysql_adapter.rb +54 -0
  109. data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +143 -0
  110. data/lib/thinking_sphinx/association.rb +164 -0
  111. data/lib/thinking_sphinx/attribute.rb +362 -0
  112. data/lib/thinking_sphinx/auto_version.rb +22 -0
  113. data/lib/thinking_sphinx/class_facet.rb +15 -0
  114. data/lib/thinking_sphinx/configuration.rb +300 -0
  115. data/lib/thinking_sphinx/context.rb +68 -0
  116. data/lib/thinking_sphinx/core/array.rb +7 -0
  117. data/lib/thinking_sphinx/core/string.rb +15 -0
  118. data/lib/thinking_sphinx/deltas/default_delta.rb +62 -0
  119. data/lib/thinking_sphinx/deltas.rb +28 -0
  120. data/lib/thinking_sphinx/deploy/capistrano.rb +100 -0
  121. data/lib/thinking_sphinx/excerpter.rb +22 -0
  122. data/lib/thinking_sphinx/facet.rb +125 -0
  123. data/lib/thinking_sphinx/facet_search.rb +136 -0
  124. data/lib/thinking_sphinx/field.rb +82 -0
  125. data/lib/thinking_sphinx/index/builder.rb +296 -0
  126. data/lib/thinking_sphinx/index/faux_column.rb +110 -0
  127. data/lib/thinking_sphinx/index.rb +157 -0
  128. data/lib/thinking_sphinx/property.rb +162 -0
  129. data/lib/thinking_sphinx/rails_additions.rb +150 -0
  130. data/lib/thinking_sphinx/search.rb +769 -0
  131. data/lib/thinking_sphinx/search_methods.rb +439 -0
  132. data/lib/thinking_sphinx/source/internal_properties.rb +46 -0
  133. data/lib/thinking_sphinx/source/sql.rb +130 -0
  134. data/lib/thinking_sphinx/source.rb +153 -0
  135. data/lib/thinking_sphinx/tasks.rb +131 -0
  136. data/lib/thinking_sphinx/test.rb +52 -0
  137. data/lib/thinking_sphinx.rb +225 -0
  138. data/rails/init.rb +16 -0
  139. data/recipes/thinking_sphinx.rb +3 -0
  140. data/spec/fixtures/data.sql +32 -0
  141. data/spec/fixtures/database.yml.default +3 -0
  142. data/spec/fixtures/models.rb +145 -0
  143. data/spec/fixtures/structure.sql +125 -0
  144. data/spec/spec_helper.rb +60 -0
  145. data/spec/sphinx_helper.rb +81 -0
  146. data/spec/thinking_sphinx/active_record/delta_spec.rb +128 -0
  147. data/spec/thinking_sphinx/active_record/has_many_association_spec.rb +55 -0
  148. data/spec/thinking_sphinx/active_record/scopes_spec.rb +177 -0
  149. data/spec/thinking_sphinx/active_record_spec.rb +622 -0
  150. data/spec/thinking_sphinx/association_spec.rb +239 -0
  151. data/spec/thinking_sphinx/attribute_spec.rb +570 -0
  152. data/spec/thinking_sphinx/auto_version_spec.rb +39 -0
  153. data/spec/thinking_sphinx/configuration_spec.rb +234 -0
  154. data/spec/thinking_sphinx/context_spec.rb +119 -0
  155. data/spec/thinking_sphinx/core/array_spec.rb +9 -0
  156. data/spec/thinking_sphinx/core/string_spec.rb +9 -0
  157. data/spec/thinking_sphinx/excerpter_spec.rb +57 -0
  158. data/spec/thinking_sphinx/facet_search_spec.rb +176 -0
  159. data/spec/thinking_sphinx/facet_spec.rb +333 -0
  160. data/spec/thinking_sphinx/field_spec.rb +154 -0
  161. data/spec/thinking_sphinx/index/builder_spec.rb +479 -0
  162. data/spec/thinking_sphinx/index/faux_column_spec.rb +30 -0
  163. data/spec/thinking_sphinx/index_spec.rb +183 -0
  164. data/spec/thinking_sphinx/rails_additions_spec.rb +203 -0
  165. data/spec/thinking_sphinx/search_methods_spec.rb +152 -0
  166. data/spec/thinking_sphinx/search_spec.rb +1181 -0
  167. data/spec/thinking_sphinx/source_spec.rb +235 -0
  168. data/spec/thinking_sphinx_spec.rb +204 -0
  169. data/tasks/distribution.rb +41 -0
  170. data/tasks/rails.rake +1 -0
  171. data/tasks/testing.rb +72 -0
  172. data/vendor/after_commit/.gitignore +1 -0
  173. data/vendor/after_commit/lib/after_commit/active_record.rb +122 -0
  174. data/vendor/after_commit/lib/after_commit/connection_adapters.rb +168 -0
  175. data/vendor/after_commit/lib/after_commit/test_bypass.rb +30 -0
  176. data/vendor/after_commit/lib/after_commit.rb +70 -0
  177. data/vendor/riddle/lib/riddle/0.9.8.rb +1 -0
  178. data/vendor/riddle/lib/riddle/0.9.9/client/filter.rb +22 -0
  179. data/vendor/riddle/lib/riddle/0.9.9/client.rb +49 -0
  180. data/vendor/riddle/lib/riddle/0.9.9/configuration/searchd.rb +28 -0
  181. data/vendor/riddle/lib/riddle/0.9.9.rb +7 -0
  182. data/vendor/riddle/lib/riddle/auto_version.rb +11 -0
  183. data/vendor/riddle/lib/riddle/client/filter.rb +62 -0
  184. data/vendor/riddle/lib/riddle/client/message.rb +70 -0
  185. data/vendor/riddle/lib/riddle/client/response.rb +94 -0
  186. data/vendor/riddle/lib/riddle/client.rb +745 -0
  187. data/vendor/riddle/lib/riddle/configuration/distributed_index.rb +49 -0
  188. data/vendor/riddle/lib/riddle/configuration/index.rb +149 -0
  189. data/vendor/riddle/lib/riddle/configuration/indexer.rb +20 -0
  190. data/vendor/riddle/lib/riddle/configuration/remote_index.rb +17 -0
  191. data/vendor/riddle/lib/riddle/configuration/searchd.rb +28 -0
  192. data/vendor/riddle/lib/riddle/configuration/section.rb +43 -0
  193. data/vendor/riddle/lib/riddle/configuration/source.rb +23 -0
  194. data/vendor/riddle/lib/riddle/configuration/sql_source.rb +53 -0
  195. data/vendor/riddle/lib/riddle/configuration/xml_source.rb +29 -0
  196. data/vendor/riddle/lib/riddle/configuration.rb +33 -0
  197. data/vendor/riddle/lib/riddle/controller.rb +78 -0
  198. data/vendor/riddle/lib/riddle.rb +51 -0
  199. metadata +312 -0
metadata ADDED
@@ -0,0 +1,312 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: skalee-thinking-sphinx
3
+ version: !ruby/object:Gem::Version
4
+ hash: 125
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 3
9
+ - 14
10
+ - 1
11
+ version: 1.3.14.1
12
+ platform: ruby
13
+ authors:
14
+ - "Pat Allen, slight modifications from Jaros\xC5\x82aw Skrzypek, Sebastian Ska\xC5\x82acki"
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-07-28 00:00:00 +02:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: activerecord
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 39
31
+ segments:
32
+ - 1
33
+ - 15
34
+ - 6
35
+ version: 1.15.6
36
+ type: :runtime
37
+ version_requirements: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: riddle
40
+ prerelease: false
41
+ requirement: &id002 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ hash: 7
47
+ segments:
48
+ - 1
49
+ - 0
50
+ - 8
51
+ version: 1.0.8
52
+ type: :runtime
53
+ version_requirements: *id002
54
+ - !ruby/object:Gem::Dependency
55
+ name: after_commit
56
+ prerelease: false
57
+ requirement: &id003 !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 29
63
+ segments:
64
+ - 1
65
+ - 0
66
+ - 5
67
+ version: 1.0.5
68
+ type: :runtime
69
+ version_requirements: *id003
70
+ description:
71
+ email: skalee@gmail.com
72
+ executables: []
73
+
74
+ extensions: []
75
+
76
+ extra_rdoc_files: []
77
+
78
+ files:
79
+ - LICENCE
80
+ - README.textile
81
+ - Rakefile
82
+ - VERSION
83
+ - contribute.rb
84
+ - cucumber.yml
85
+ - features/abstract_inheritance.feature
86
+ - features/alternate_primary_key.feature
87
+ - features/attribute_transformation.feature
88
+ - features/attribute_updates.feature
89
+ - features/deleting_instances.feature
90
+ - features/direct_attributes.feature
91
+ - features/excerpts.feature
92
+ - features/extensible_delta_indexing.feature
93
+ - features/facets.feature
94
+ - features/facets_across_model.feature
95
+ - features/handling_edits.feature
96
+ - features/retry_stale_indexes.feature
97
+ - features/searching_across_models.feature
98
+ - features/searching_by_index.feature
99
+ - features/searching_by_model.feature
100
+ - features/searching_with_find_arguments.feature
101
+ - features/sphinx_detection.feature
102
+ - features/sphinx_scopes.feature
103
+ - features/step_definitions/alpha_steps.rb
104
+ - features/step_definitions/beta_steps.rb
105
+ - features/step_definitions/common_steps.rb
106
+ - features/step_definitions/extensible_delta_indexing_steps.rb
107
+ - features/step_definitions/facet_steps.rb
108
+ - features/step_definitions/find_arguments_steps.rb
109
+ - features/step_definitions/gamma_steps.rb
110
+ - features/step_definitions/scope_steps.rb
111
+ - features/step_definitions/search_steps.rb
112
+ - features/step_definitions/sphinx_steps.rb
113
+ - features/sti_searching.feature
114
+ - features/support/database.example.yml
115
+ - features/support/db/.gitignore
116
+ - features/support/db/fixtures/alphas.rb
117
+ - features/support/db/fixtures/authors.rb
118
+ - features/support/db/fixtures/betas.rb
119
+ - features/support/db/fixtures/boxes.rb
120
+ - features/support/db/fixtures/categories.rb
121
+ - features/support/db/fixtures/cats.rb
122
+ - features/support/db/fixtures/comments.rb
123
+ - features/support/db/fixtures/developers.rb
124
+ - features/support/db/fixtures/dogs.rb
125
+ - features/support/db/fixtures/extensible_betas.rb
126
+ - features/support/db/fixtures/foxes.rb
127
+ - features/support/db/fixtures/gammas.rb
128
+ - features/support/db/fixtures/music.rb
129
+ - features/support/db/fixtures/people.rb
130
+ - features/support/db/fixtures/posts.rb
131
+ - features/support/db/fixtures/robots.rb
132
+ - features/support/db/fixtures/tags.rb
133
+ - features/support/db/migrations/create_alphas.rb
134
+ - features/support/db/migrations/create_animals.rb
135
+ - features/support/db/migrations/create_authors.rb
136
+ - features/support/db/migrations/create_authors_posts.rb
137
+ - features/support/db/migrations/create_betas.rb
138
+ - features/support/db/migrations/create_boxes.rb
139
+ - features/support/db/migrations/create_categories.rb
140
+ - features/support/db/migrations/create_comments.rb
141
+ - features/support/db/migrations/create_developers.rb
142
+ - features/support/db/migrations/create_extensible_betas.rb
143
+ - features/support/db/migrations/create_gammas.rb
144
+ - features/support/db/migrations/create_genres.rb
145
+ - features/support/db/migrations/create_music.rb
146
+ - features/support/db/migrations/create_people.rb
147
+ - features/support/db/migrations/create_posts.rb
148
+ - features/support/db/migrations/create_robots.rb
149
+ - features/support/db/migrations/create_taggings.rb
150
+ - features/support/db/migrations/create_tags.rb
151
+ - features/support/env.rb
152
+ - features/support/lib/generic_delta_handler.rb
153
+ - features/support/models/alpha.rb
154
+ - features/support/models/animal.rb
155
+ - features/support/models/author.rb
156
+ - features/support/models/beta.rb
157
+ - features/support/models/box.rb
158
+ - features/support/models/cat.rb
159
+ - features/support/models/category.rb
160
+ - features/support/models/comment.rb
161
+ - features/support/models/developer.rb
162
+ - features/support/models/dog.rb
163
+ - features/support/models/extensible_beta.rb
164
+ - features/support/models/fox.rb
165
+ - features/support/models/gamma.rb
166
+ - features/support/models/genre.rb
167
+ - features/support/models/medium.rb
168
+ - features/support/models/music.rb
169
+ - features/support/models/person.rb
170
+ - features/support/models/post.rb
171
+ - features/support/models/robot.rb
172
+ - features/support/models/tag.rb
173
+ - features/support/models/tagging.rb
174
+ - ginger_scenarios.rb
175
+ - init.rb
176
+ - install.rb
177
+ - lib/cucumber/thinking_sphinx/external_world.rb
178
+ - lib/cucumber/thinking_sphinx/internal_world.rb
179
+ - lib/cucumber/thinking_sphinx/sql_logger.rb
180
+ - lib/thinking_sphinx.rb
181
+ - lib/thinking_sphinx/active_record.rb
182
+ - lib/thinking_sphinx/active_record/attribute_updates.rb
183
+ - lib/thinking_sphinx/active_record/delta.rb
184
+ - lib/thinking_sphinx/active_record/has_many_association.rb
185
+ - lib/thinking_sphinx/active_record/scopes.rb
186
+ - lib/thinking_sphinx/adapters/abstract_adapter.rb
187
+ - lib/thinking_sphinx/adapters/mysql_adapter.rb
188
+ - lib/thinking_sphinx/adapters/postgresql_adapter.rb
189
+ - lib/thinking_sphinx/association.rb
190
+ - lib/thinking_sphinx/attribute.rb
191
+ - lib/thinking_sphinx/auto_version.rb
192
+ - lib/thinking_sphinx/class_facet.rb
193
+ - lib/thinking_sphinx/configuration.rb
194
+ - lib/thinking_sphinx/context.rb
195
+ - lib/thinking_sphinx/core/array.rb
196
+ - lib/thinking_sphinx/core/string.rb
197
+ - lib/thinking_sphinx/deltas.rb
198
+ - lib/thinking_sphinx/deltas/default_delta.rb
199
+ - lib/thinking_sphinx/deploy/capistrano.rb
200
+ - lib/thinking_sphinx/excerpter.rb
201
+ - lib/thinking_sphinx/facet.rb
202
+ - lib/thinking_sphinx/facet_search.rb
203
+ - lib/thinking_sphinx/field.rb
204
+ - lib/thinking_sphinx/index.rb
205
+ - lib/thinking_sphinx/index/builder.rb
206
+ - lib/thinking_sphinx/index/faux_column.rb
207
+ - lib/thinking_sphinx/property.rb
208
+ - lib/thinking_sphinx/rails_additions.rb
209
+ - lib/thinking_sphinx/search.rb
210
+ - lib/thinking_sphinx/search_methods.rb
211
+ - lib/thinking_sphinx/source.rb
212
+ - lib/thinking_sphinx/source/internal_properties.rb
213
+ - lib/thinking_sphinx/source/sql.rb
214
+ - lib/thinking_sphinx/tasks.rb
215
+ - lib/thinking_sphinx/test.rb
216
+ - rails/init.rb
217
+ - recipes/thinking_sphinx.rb
218
+ - spec/fixtures/data.sql
219
+ - spec/fixtures/database.yml.default
220
+ - spec/fixtures/models.rb
221
+ - spec/fixtures/structure.sql
222
+ - spec/spec_helper.rb
223
+ - spec/sphinx_helper.rb
224
+ - spec/thinking_sphinx/active_record/delta_spec.rb
225
+ - spec/thinking_sphinx/active_record/has_many_association_spec.rb
226
+ - spec/thinking_sphinx/active_record/scopes_spec.rb
227
+ - spec/thinking_sphinx/active_record_spec.rb
228
+ - spec/thinking_sphinx/association_spec.rb
229
+ - spec/thinking_sphinx/attribute_spec.rb
230
+ - spec/thinking_sphinx/auto_version_spec.rb
231
+ - spec/thinking_sphinx/configuration_spec.rb
232
+ - spec/thinking_sphinx/context_spec.rb
233
+ - spec/thinking_sphinx/core/array_spec.rb
234
+ - spec/thinking_sphinx/core/string_spec.rb
235
+ - spec/thinking_sphinx/excerpter_spec.rb
236
+ - spec/thinking_sphinx/facet_search_spec.rb
237
+ - spec/thinking_sphinx/facet_spec.rb
238
+ - spec/thinking_sphinx/field_spec.rb
239
+ - spec/thinking_sphinx/index/builder_spec.rb
240
+ - spec/thinking_sphinx/index/faux_column_spec.rb
241
+ - spec/thinking_sphinx/index_spec.rb
242
+ - spec/thinking_sphinx/rails_additions_spec.rb
243
+ - spec/thinking_sphinx/search_methods_spec.rb
244
+ - spec/thinking_sphinx/search_spec.rb
245
+ - spec/thinking_sphinx/source_spec.rb
246
+ - spec/thinking_sphinx_spec.rb
247
+ - tasks/distribution.rb
248
+ - tasks/rails.rake
249
+ - tasks/testing.rb
250
+ - vendor/after_commit/.gitignore
251
+ - vendor/after_commit/lib/after_commit.rb
252
+ - vendor/after_commit/lib/after_commit/active_record.rb
253
+ - vendor/after_commit/lib/after_commit/connection_adapters.rb
254
+ - vendor/after_commit/lib/after_commit/test_bypass.rb
255
+ - vendor/riddle/lib/riddle.rb
256
+ - vendor/riddle/lib/riddle/0.9.8.rb
257
+ - vendor/riddle/lib/riddle/0.9.9.rb
258
+ - vendor/riddle/lib/riddle/0.9.9/client.rb
259
+ - vendor/riddle/lib/riddle/0.9.9/client/filter.rb
260
+ - vendor/riddle/lib/riddle/0.9.9/configuration/searchd.rb
261
+ - vendor/riddle/lib/riddle/auto_version.rb
262
+ - vendor/riddle/lib/riddle/client.rb
263
+ - vendor/riddle/lib/riddle/client/filter.rb
264
+ - vendor/riddle/lib/riddle/client/message.rb
265
+ - vendor/riddle/lib/riddle/client/response.rb
266
+ - vendor/riddle/lib/riddle/configuration.rb
267
+ - vendor/riddle/lib/riddle/configuration/distributed_index.rb
268
+ - vendor/riddle/lib/riddle/configuration/index.rb
269
+ - vendor/riddle/lib/riddle/configuration/indexer.rb
270
+ - vendor/riddle/lib/riddle/configuration/remote_index.rb
271
+ - vendor/riddle/lib/riddle/configuration/searchd.rb
272
+ - vendor/riddle/lib/riddle/configuration/section.rb
273
+ - vendor/riddle/lib/riddle/configuration/source.rb
274
+ - vendor/riddle/lib/riddle/configuration/sql_source.rb
275
+ - vendor/riddle/lib/riddle/configuration/xml_source.rb
276
+ - vendor/riddle/lib/riddle/controller.rb
277
+ has_rdoc: true
278
+ homepage: http://github.com/skalee/thinking-sphinx
279
+ licenses: []
280
+
281
+ post_install_message:
282
+ rdoc_options: []
283
+
284
+ require_paths:
285
+ - lib
286
+ required_ruby_version: !ruby/object:Gem::Requirement
287
+ none: false
288
+ requirements:
289
+ - - ">="
290
+ - !ruby/object:Gem::Version
291
+ hash: 3
292
+ segments:
293
+ - 0
294
+ version: "0"
295
+ required_rubygems_version: !ruby/object:Gem::Requirement
296
+ none: false
297
+ requirements:
298
+ - - ">="
299
+ - !ruby/object:Gem::Version
300
+ hash: 3
301
+ segments:
302
+ - 0
303
+ version: "0"
304
+ requirements: []
305
+
306
+ rubyforge_project:
307
+ rubygems_version: 1.3.7
308
+ signing_key:
309
+ specification_version: 3
310
+ summary: ActiveRecord/Rails Sphinx library
311
+ test_files: []
312
+