joshcutler-thinking-sphinx 1.3.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. data/LICENCE +20 -0
  2. data/README.textile +167 -0
  3. data/VERSION +1 -0
  4. data/features/abstract_inheritance.feature +10 -0
  5. data/features/alternate_primary_key.feature +27 -0
  6. data/features/attribute_transformation.feature +22 -0
  7. data/features/attribute_updates.feature +77 -0
  8. data/features/deleting_instances.feature +67 -0
  9. data/features/direct_attributes.feature +11 -0
  10. data/features/excerpts.feature +13 -0
  11. data/features/extensible_delta_indexing.feature +9 -0
  12. data/features/facets.feature +82 -0
  13. data/features/facets_across_model.feature +29 -0
  14. data/features/handling_edits.feature +92 -0
  15. data/features/retry_stale_indexes.feature +24 -0
  16. data/features/searching_across_models.feature +20 -0
  17. data/features/searching_by_index.feature +40 -0
  18. data/features/searching_by_model.feature +175 -0
  19. data/features/searching_with_find_arguments.feature +56 -0
  20. data/features/sphinx_detection.feature +25 -0
  21. data/features/sphinx_scopes.feature +42 -0
  22. data/features/step_definitions/alpha_steps.rb +16 -0
  23. data/features/step_definitions/beta_steps.rb +7 -0
  24. data/features/step_definitions/common_steps.rb +193 -0
  25. data/features/step_definitions/extensible_delta_indexing_steps.rb +7 -0
  26. data/features/step_definitions/facet_steps.rb +96 -0
  27. data/features/step_definitions/find_arguments_steps.rb +36 -0
  28. data/features/step_definitions/gamma_steps.rb +15 -0
  29. data/features/step_definitions/scope_steps.rb +15 -0
  30. data/features/step_definitions/search_steps.rb +89 -0
  31. data/features/step_definitions/sphinx_steps.rb +35 -0
  32. data/features/sti_searching.feature +19 -0
  33. data/features/support/env.rb +21 -0
  34. data/features/support/lib/generic_delta_handler.rb +8 -0
  35. data/features/thinking_sphinx/database.example.yml +3 -0
  36. data/features/thinking_sphinx/db/fixtures/alphas.rb +10 -0
  37. data/features/thinking_sphinx/db/fixtures/authors.rb +1 -0
  38. data/features/thinking_sphinx/db/fixtures/betas.rb +11 -0
  39. data/features/thinking_sphinx/db/fixtures/boxes.rb +9 -0
  40. data/features/thinking_sphinx/db/fixtures/categories.rb +1 -0
  41. data/features/thinking_sphinx/db/fixtures/cats.rb +3 -0
  42. data/features/thinking_sphinx/db/fixtures/comments.rb +24 -0
  43. data/features/thinking_sphinx/db/fixtures/developers.rb +31 -0
  44. data/features/thinking_sphinx/db/fixtures/dogs.rb +3 -0
  45. data/features/thinking_sphinx/db/fixtures/extensible_betas.rb +10 -0
  46. data/features/thinking_sphinx/db/fixtures/foxes.rb +3 -0
  47. data/features/thinking_sphinx/db/fixtures/gammas.rb +10 -0
  48. data/features/thinking_sphinx/db/fixtures/music.rb +4 -0
  49. data/features/thinking_sphinx/db/fixtures/people.rb +1001 -0
  50. data/features/thinking_sphinx/db/fixtures/posts.rb +6 -0
  51. data/features/thinking_sphinx/db/fixtures/robots.rb +14 -0
  52. data/features/thinking_sphinx/db/fixtures/tags.rb +27 -0
  53. data/features/thinking_sphinx/db/migrations/create_alphas.rb +8 -0
  54. data/features/thinking_sphinx/db/migrations/create_animals.rb +5 -0
  55. data/features/thinking_sphinx/db/migrations/create_authors.rb +3 -0
  56. data/features/thinking_sphinx/db/migrations/create_authors_posts.rb +6 -0
  57. data/features/thinking_sphinx/db/migrations/create_betas.rb +5 -0
  58. data/features/thinking_sphinx/db/migrations/create_boxes.rb +5 -0
  59. data/features/thinking_sphinx/db/migrations/create_categories.rb +3 -0
  60. data/features/thinking_sphinx/db/migrations/create_comments.rb +10 -0
  61. data/features/thinking_sphinx/db/migrations/create_developers.rb +7 -0
  62. data/features/thinking_sphinx/db/migrations/create_extensible_betas.rb +5 -0
  63. data/features/thinking_sphinx/db/migrations/create_gammas.rb +3 -0
  64. data/features/thinking_sphinx/db/migrations/create_genres.rb +3 -0
  65. data/features/thinking_sphinx/db/migrations/create_music.rb +6 -0
  66. data/features/thinking_sphinx/db/migrations/create_people.rb +13 -0
  67. data/features/thinking_sphinx/db/migrations/create_posts.rb +5 -0
  68. data/features/thinking_sphinx/db/migrations/create_robots.rb +4 -0
  69. data/features/thinking_sphinx/db/migrations/create_taggings.rb +5 -0
  70. data/features/thinking_sphinx/db/migrations/create_tags.rb +4 -0
  71. data/features/thinking_sphinx/models/alpha.rb +22 -0
  72. data/features/thinking_sphinx/models/animal.rb +5 -0
  73. data/features/thinking_sphinx/models/author.rb +3 -0
  74. data/features/thinking_sphinx/models/beta.rb +8 -0
  75. data/features/thinking_sphinx/models/box.rb +8 -0
  76. data/features/thinking_sphinx/models/cat.rb +3 -0
  77. data/features/thinking_sphinx/models/category.rb +4 -0
  78. data/features/thinking_sphinx/models/comment.rb +10 -0
  79. data/features/thinking_sphinx/models/developer.rb +16 -0
  80. data/features/thinking_sphinx/models/dog.rb +3 -0
  81. data/features/thinking_sphinx/models/extensible_beta.rb +9 -0
  82. data/features/thinking_sphinx/models/fox.rb +5 -0
  83. data/features/thinking_sphinx/models/gamma.rb +5 -0
  84. data/features/thinking_sphinx/models/genre.rb +3 -0
  85. data/features/thinking_sphinx/models/medium.rb +5 -0
  86. data/features/thinking_sphinx/models/music.rb +8 -0
  87. data/features/thinking_sphinx/models/person.rb +23 -0
  88. data/features/thinking_sphinx/models/post.rb +21 -0
  89. data/features/thinking_sphinx/models/robot.rb +12 -0
  90. data/features/thinking_sphinx/models/tag.rb +3 -0
  91. data/features/thinking_sphinx/models/tagging.rb +4 -0
  92. data/lib/cucumber/thinking_sphinx/external_world.rb +8 -0
  93. data/lib/cucumber/thinking_sphinx/internal_world.rb +126 -0
  94. data/lib/cucumber/thinking_sphinx/sql_logger.rb +20 -0
  95. data/lib/thinking_sphinx.rb +242 -0
  96. data/lib/thinking_sphinx/active_record.rb +380 -0
  97. data/lib/thinking_sphinx/active_record/attribute_updates.rb +50 -0
  98. data/lib/thinking_sphinx/active_record/delta.rb +61 -0
  99. data/lib/thinking_sphinx/active_record/has_many_association.rb +51 -0
  100. data/lib/thinking_sphinx/active_record/scopes.rb +75 -0
  101. data/lib/thinking_sphinx/adapters/abstract_adapter.rb +46 -0
  102. data/lib/thinking_sphinx/adapters/mysql_adapter.rb +58 -0
  103. data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +147 -0
  104. data/lib/thinking_sphinx/association.rb +164 -0
  105. data/lib/thinking_sphinx/attribute.rb +390 -0
  106. data/lib/thinking_sphinx/auto_version.rb +22 -0
  107. data/lib/thinking_sphinx/class_facet.rb +15 -0
  108. data/lib/thinking_sphinx/configuration.rb +292 -0
  109. data/lib/thinking_sphinx/context.rb +74 -0
  110. data/lib/thinking_sphinx/core/array.rb +7 -0
  111. data/lib/thinking_sphinx/core/string.rb +15 -0
  112. data/lib/thinking_sphinx/deltas.rb +28 -0
  113. data/lib/thinking_sphinx/deltas/default_delta.rb +62 -0
  114. data/lib/thinking_sphinx/deploy/capistrano.rb +100 -0
  115. data/lib/thinking_sphinx/excerpter.rb +22 -0
  116. data/lib/thinking_sphinx/facet.rb +125 -0
  117. data/lib/thinking_sphinx/facet_search.rb +136 -0
  118. data/lib/thinking_sphinx/field.rb +80 -0
  119. data/lib/thinking_sphinx/index.rb +157 -0
  120. data/lib/thinking_sphinx/index/builder.rb +302 -0
  121. data/lib/thinking_sphinx/index/faux_column.rb +118 -0
  122. data/lib/thinking_sphinx/join.rb +37 -0
  123. data/lib/thinking_sphinx/property.rb +168 -0
  124. data/lib/thinking_sphinx/rails_additions.rb +150 -0
  125. data/lib/thinking_sphinx/search.rb +785 -0
  126. data/lib/thinking_sphinx/search_methods.rb +439 -0
  127. data/lib/thinking_sphinx/source.rb +159 -0
  128. data/lib/thinking_sphinx/source/internal_properties.rb +46 -0
  129. data/lib/thinking_sphinx/source/sql.rb +130 -0
  130. data/lib/thinking_sphinx/tasks.rb +121 -0
  131. data/lib/thinking_sphinx/test.rb +52 -0
  132. data/rails/init.rb +16 -0
  133. data/spec/thinking_sphinx/active_record/delta_spec.rb +128 -0
  134. data/spec/thinking_sphinx/active_record/has_many_association_spec.rb +71 -0
  135. data/spec/thinking_sphinx/active_record/scopes_spec.rb +177 -0
  136. data/spec/thinking_sphinx/active_record_spec.rb +618 -0
  137. data/spec/thinking_sphinx/association_spec.rb +239 -0
  138. data/spec/thinking_sphinx/attribute_spec.rb +548 -0
  139. data/spec/thinking_sphinx/auto_version_spec.rb +39 -0
  140. data/spec/thinking_sphinx/configuration_spec.rb +271 -0
  141. data/spec/thinking_sphinx/context_spec.rb +126 -0
  142. data/spec/thinking_sphinx/core/array_spec.rb +9 -0
  143. data/spec/thinking_sphinx/core/string_spec.rb +9 -0
  144. data/spec/thinking_sphinx/excerpter_spec.rb +49 -0
  145. data/spec/thinking_sphinx/facet_search_spec.rb +176 -0
  146. data/spec/thinking_sphinx/facet_spec.rb +333 -0
  147. data/spec/thinking_sphinx/field_spec.rb +113 -0
  148. data/spec/thinking_sphinx/index/builder_spec.rb +495 -0
  149. data/spec/thinking_sphinx/index/faux_column_spec.rb +36 -0
  150. data/spec/thinking_sphinx/index_spec.rb +183 -0
  151. data/spec/thinking_sphinx/rails_additions_spec.rb +203 -0
  152. data/spec/thinking_sphinx/search_methods_spec.rb +152 -0
  153. data/spec/thinking_sphinx/search_spec.rb +1206 -0
  154. data/spec/thinking_sphinx/source_spec.rb +243 -0
  155. data/spec/thinking_sphinx_spec.rb +204 -0
  156. data/tasks/distribution.rb +46 -0
  157. data/tasks/rails.rake +1 -0
  158. metadata +475 -0
data/tasks/rails.rake ADDED
@@ -0,0 +1 @@
1
+ require File.join(File.dirname(__FILE__), '/../lib/thinking_sphinx/tasks')
metadata ADDED
@@ -0,0 +1,475 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: joshcutler-thinking-sphinx
3
+ version: !ruby/object:Gem::Version
4
+ hash: 63
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 3
9
+ - 18
10
+ version: 1.3.18
11
+ platform: ruby
12
+ authors:
13
+ - Josh Cutler
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-21 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: activerecord
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 39
30
+ segments:
31
+ - 1
32
+ - 15
33
+ - 6
34
+ version: 1.15.6
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: riddle
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 3
46
+ segments:
47
+ - 1
48
+ - 0
49
+ - 10
50
+ version: 1.0.10
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: after_commit
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ hash: 27
62
+ segments:
63
+ - 1
64
+ - 0
65
+ - 6
66
+ version: 1.0.6
67
+ type: :runtime
68
+ version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ hash: 3
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ type: :development
82
+ version_requirements: *id004
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ prerelease: false
86
+ requirement: &id005 !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ hash: 13
92
+ segments:
93
+ - 1
94
+ - 2
95
+ - 9
96
+ version: 1.2.9
97
+ type: :development
98
+ version_requirements: *id005
99
+ - !ruby/object:Gem::Dependency
100
+ name: cucumber
101
+ prerelease: false
102
+ requirement: &id006 !ruby/object:Gem::Requirement
103
+ none: false
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ hash: 3
108
+ segments:
109
+ - 0
110
+ version: "0"
111
+ type: :development
112
+ version_requirements: *id006
113
+ - !ruby/object:Gem::Dependency
114
+ name: will_paginate
115
+ prerelease: false
116
+ requirement: &id007 !ruby/object:Gem::Requirement
117
+ none: false
118
+ requirements:
119
+ - - "="
120
+ - !ruby/object:Gem::Version
121
+ hash: 21
122
+ segments:
123
+ - 2
124
+ - 3
125
+ - 11
126
+ version: 2.3.11
127
+ type: :development
128
+ version_requirements: *id007
129
+ - !ruby/object:Gem::Dependency
130
+ name: ginger
131
+ prerelease: false
132
+ requirement: &id008 !ruby/object:Gem::Requirement
133
+ none: false
134
+ requirements:
135
+ - - "="
136
+ - !ruby/object:Gem::Version
137
+ hash: 31
138
+ segments:
139
+ - 1
140
+ - 2
141
+ - 0
142
+ version: 1.2.0
143
+ type: :development
144
+ version_requirements: *id008
145
+ - !ruby/object:Gem::Dependency
146
+ name: faker
147
+ prerelease: false
148
+ requirement: &id009 !ruby/object:Gem::Requirement
149
+ none: false
150
+ requirements:
151
+ - - "="
152
+ - !ruby/object:Gem::Version
153
+ hash: 17
154
+ segments:
155
+ - 0
156
+ - 3
157
+ - 1
158
+ version: 0.3.1
159
+ type: :development
160
+ version_requirements: *id009
161
+ description: A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.
162
+ email: josh@codepresencelabs.com
163
+ executables: []
164
+
165
+ extensions: []
166
+
167
+ extra_rdoc_files:
168
+ - README.textile
169
+ files:
170
+ - LICENCE
171
+ - README.textile
172
+ - VERSION
173
+ - lib/cucumber/thinking_sphinx/external_world.rb
174
+ - lib/cucumber/thinking_sphinx/internal_world.rb
175
+ - lib/cucumber/thinking_sphinx/sql_logger.rb
176
+ - lib/thinking_sphinx.rb
177
+ - lib/thinking_sphinx/active_record.rb
178
+ - lib/thinking_sphinx/active_record/attribute_updates.rb
179
+ - lib/thinking_sphinx/active_record/delta.rb
180
+ - lib/thinking_sphinx/active_record/has_many_association.rb
181
+ - lib/thinking_sphinx/active_record/scopes.rb
182
+ - lib/thinking_sphinx/adapters/abstract_adapter.rb
183
+ - lib/thinking_sphinx/adapters/mysql_adapter.rb
184
+ - lib/thinking_sphinx/adapters/postgresql_adapter.rb
185
+ - lib/thinking_sphinx/association.rb
186
+ - lib/thinking_sphinx/attribute.rb
187
+ - lib/thinking_sphinx/auto_version.rb
188
+ - lib/thinking_sphinx/class_facet.rb
189
+ - lib/thinking_sphinx/configuration.rb
190
+ - lib/thinking_sphinx/context.rb
191
+ - lib/thinking_sphinx/core/array.rb
192
+ - lib/thinking_sphinx/core/string.rb
193
+ - lib/thinking_sphinx/deltas.rb
194
+ - lib/thinking_sphinx/deltas/default_delta.rb
195
+ - lib/thinking_sphinx/deploy/capistrano.rb
196
+ - lib/thinking_sphinx/excerpter.rb
197
+ - lib/thinking_sphinx/facet.rb
198
+ - lib/thinking_sphinx/facet_search.rb
199
+ - lib/thinking_sphinx/field.rb
200
+ - lib/thinking_sphinx/index.rb
201
+ - lib/thinking_sphinx/index/builder.rb
202
+ - lib/thinking_sphinx/index/faux_column.rb
203
+ - lib/thinking_sphinx/join.rb
204
+ - lib/thinking_sphinx/property.rb
205
+ - lib/thinking_sphinx/rails_additions.rb
206
+ - lib/thinking_sphinx/search.rb
207
+ - lib/thinking_sphinx/search_methods.rb
208
+ - lib/thinking_sphinx/source.rb
209
+ - lib/thinking_sphinx/source/internal_properties.rb
210
+ - lib/thinking_sphinx/source/sql.rb
211
+ - lib/thinking_sphinx/tasks.rb
212
+ - lib/thinking_sphinx/test.rb
213
+ - rails/init.rb
214
+ - tasks/distribution.rb
215
+ - tasks/rails.rake
216
+ - features/abstract_inheritance.feature
217
+ - features/alternate_primary_key.feature
218
+ - features/attribute_transformation.feature
219
+ - features/attribute_updates.feature
220
+ - features/deleting_instances.feature
221
+ - features/direct_attributes.feature
222
+ - features/excerpts.feature
223
+ - features/extensible_delta_indexing.feature
224
+ - features/facets.feature
225
+ - features/facets_across_model.feature
226
+ - features/handling_edits.feature
227
+ - features/retry_stale_indexes.feature
228
+ - features/searching_across_models.feature
229
+ - features/searching_by_index.feature
230
+ - features/searching_by_model.feature
231
+ - features/searching_with_find_arguments.feature
232
+ - features/sphinx_detection.feature
233
+ - features/sphinx_scopes.feature
234
+ - features/step_definitions/alpha_steps.rb
235
+ - features/step_definitions/beta_steps.rb
236
+ - features/step_definitions/common_steps.rb
237
+ - features/step_definitions/extensible_delta_indexing_steps.rb
238
+ - features/step_definitions/facet_steps.rb
239
+ - features/step_definitions/find_arguments_steps.rb
240
+ - features/step_definitions/gamma_steps.rb
241
+ - features/step_definitions/scope_steps.rb
242
+ - features/step_definitions/search_steps.rb
243
+ - features/step_definitions/sphinx_steps.rb
244
+ - features/sti_searching.feature
245
+ - features/support/env.rb
246
+ - features/support/lib/generic_delta_handler.rb
247
+ - features/thinking_sphinx/database.example.yml
248
+ - features/thinking_sphinx/db/fixtures/alphas.rb
249
+ - features/thinking_sphinx/db/fixtures/authors.rb
250
+ - features/thinking_sphinx/db/fixtures/betas.rb
251
+ - features/thinking_sphinx/db/fixtures/boxes.rb
252
+ - features/thinking_sphinx/db/fixtures/categories.rb
253
+ - features/thinking_sphinx/db/fixtures/cats.rb
254
+ - features/thinking_sphinx/db/fixtures/comments.rb
255
+ - features/thinking_sphinx/db/fixtures/developers.rb
256
+ - features/thinking_sphinx/db/fixtures/dogs.rb
257
+ - features/thinking_sphinx/db/fixtures/extensible_betas.rb
258
+ - features/thinking_sphinx/db/fixtures/foxes.rb
259
+ - features/thinking_sphinx/db/fixtures/gammas.rb
260
+ - features/thinking_sphinx/db/fixtures/music.rb
261
+ - features/thinking_sphinx/db/fixtures/people.rb
262
+ - features/thinking_sphinx/db/fixtures/posts.rb
263
+ - features/thinking_sphinx/db/fixtures/robots.rb
264
+ - features/thinking_sphinx/db/fixtures/tags.rb
265
+ - features/thinking_sphinx/db/migrations/create_alphas.rb
266
+ - features/thinking_sphinx/db/migrations/create_animals.rb
267
+ - features/thinking_sphinx/db/migrations/create_authors.rb
268
+ - features/thinking_sphinx/db/migrations/create_authors_posts.rb
269
+ - features/thinking_sphinx/db/migrations/create_betas.rb
270
+ - features/thinking_sphinx/db/migrations/create_boxes.rb
271
+ - features/thinking_sphinx/db/migrations/create_categories.rb
272
+ - features/thinking_sphinx/db/migrations/create_comments.rb
273
+ - features/thinking_sphinx/db/migrations/create_developers.rb
274
+ - features/thinking_sphinx/db/migrations/create_extensible_betas.rb
275
+ - features/thinking_sphinx/db/migrations/create_gammas.rb
276
+ - features/thinking_sphinx/db/migrations/create_genres.rb
277
+ - features/thinking_sphinx/db/migrations/create_music.rb
278
+ - features/thinking_sphinx/db/migrations/create_people.rb
279
+ - features/thinking_sphinx/db/migrations/create_posts.rb
280
+ - features/thinking_sphinx/db/migrations/create_robots.rb
281
+ - features/thinking_sphinx/db/migrations/create_taggings.rb
282
+ - features/thinking_sphinx/db/migrations/create_tags.rb
283
+ - features/thinking_sphinx/models/alpha.rb
284
+ - features/thinking_sphinx/models/animal.rb
285
+ - features/thinking_sphinx/models/author.rb
286
+ - features/thinking_sphinx/models/beta.rb
287
+ - features/thinking_sphinx/models/box.rb
288
+ - features/thinking_sphinx/models/cat.rb
289
+ - features/thinking_sphinx/models/category.rb
290
+ - features/thinking_sphinx/models/comment.rb
291
+ - features/thinking_sphinx/models/developer.rb
292
+ - features/thinking_sphinx/models/dog.rb
293
+ - features/thinking_sphinx/models/extensible_beta.rb
294
+ - features/thinking_sphinx/models/fox.rb
295
+ - features/thinking_sphinx/models/gamma.rb
296
+ - features/thinking_sphinx/models/genre.rb
297
+ - features/thinking_sphinx/models/medium.rb
298
+ - features/thinking_sphinx/models/music.rb
299
+ - features/thinking_sphinx/models/person.rb
300
+ - features/thinking_sphinx/models/post.rb
301
+ - features/thinking_sphinx/models/robot.rb
302
+ - features/thinking_sphinx/models/tag.rb
303
+ - features/thinking_sphinx/models/tagging.rb
304
+ - spec/thinking_sphinx/active_record/delta_spec.rb
305
+ - spec/thinking_sphinx/active_record/has_many_association_spec.rb
306
+ - spec/thinking_sphinx/active_record/scopes_spec.rb
307
+ - spec/thinking_sphinx/active_record_spec.rb
308
+ - spec/thinking_sphinx/association_spec.rb
309
+ - spec/thinking_sphinx/attribute_spec.rb
310
+ - spec/thinking_sphinx/auto_version_spec.rb
311
+ - spec/thinking_sphinx/configuration_spec.rb
312
+ - spec/thinking_sphinx/context_spec.rb
313
+ - spec/thinking_sphinx/core/array_spec.rb
314
+ - spec/thinking_sphinx/core/string_spec.rb
315
+ - spec/thinking_sphinx/excerpter_spec.rb
316
+ - spec/thinking_sphinx/facet_search_spec.rb
317
+ - spec/thinking_sphinx/facet_spec.rb
318
+ - spec/thinking_sphinx/field_spec.rb
319
+ - spec/thinking_sphinx/index/builder_spec.rb
320
+ - spec/thinking_sphinx/index/faux_column_spec.rb
321
+ - spec/thinking_sphinx/index_spec.rb
322
+ - spec/thinking_sphinx/rails_additions_spec.rb
323
+ - spec/thinking_sphinx/search_methods_spec.rb
324
+ - spec/thinking_sphinx/search_spec.rb
325
+ - spec/thinking_sphinx/source_spec.rb
326
+ - spec/thinking_sphinx_spec.rb
327
+ has_rdoc: true
328
+ homepage: http://ts.freelancing-gods.com
329
+ licenses: []
330
+
331
+ post_install_message: |+
332
+ If you're upgrading, you should read this:
333
+ http://freelancing-god.github.com/ts/en/upgrading.html
334
+
335
+ rdoc_options:
336
+ - --charset=UTF-8
337
+ require_paths:
338
+ - lib
339
+ required_ruby_version: !ruby/object:Gem::Requirement
340
+ none: false
341
+ requirements:
342
+ - - ">="
343
+ - !ruby/object:Gem::Version
344
+ hash: 3
345
+ segments:
346
+ - 0
347
+ version: "0"
348
+ required_rubygems_version: !ruby/object:Gem::Requirement
349
+ none: false
350
+ requirements:
351
+ - - ">="
352
+ - !ruby/object:Gem::Version
353
+ hash: 3
354
+ segments:
355
+ - 0
356
+ version: "0"
357
+ requirements: []
358
+
359
+ rubyforge_project:
360
+ rubygems_version: 1.3.7
361
+ signing_key:
362
+ specification_version: 3
363
+ summary: Fork of Thinking Sphinx. An ActiveRecord/Rails Sphinx library
364
+ test_files:
365
+ - features/abstract_inheritance.feature
366
+ - features/alternate_primary_key.feature
367
+ - features/attribute_transformation.feature
368
+ - features/attribute_updates.feature
369
+ - features/deleting_instances.feature
370
+ - features/direct_attributes.feature
371
+ - features/excerpts.feature
372
+ - features/extensible_delta_indexing.feature
373
+ - features/facets.feature
374
+ - features/facets_across_model.feature
375
+ - features/handling_edits.feature
376
+ - features/retry_stale_indexes.feature
377
+ - features/searching_across_models.feature
378
+ - features/searching_by_index.feature
379
+ - features/searching_by_model.feature
380
+ - features/searching_with_find_arguments.feature
381
+ - features/sphinx_detection.feature
382
+ - features/sphinx_scopes.feature
383
+ - features/step_definitions/alpha_steps.rb
384
+ - features/step_definitions/beta_steps.rb
385
+ - features/step_definitions/common_steps.rb
386
+ - features/step_definitions/extensible_delta_indexing_steps.rb
387
+ - features/step_definitions/facet_steps.rb
388
+ - features/step_definitions/find_arguments_steps.rb
389
+ - features/step_definitions/gamma_steps.rb
390
+ - features/step_definitions/scope_steps.rb
391
+ - features/step_definitions/search_steps.rb
392
+ - features/step_definitions/sphinx_steps.rb
393
+ - features/sti_searching.feature
394
+ - features/support/env.rb
395
+ - features/support/lib/generic_delta_handler.rb
396
+ - features/thinking_sphinx/database.example.yml
397
+ - features/thinking_sphinx/db/fixtures/alphas.rb
398
+ - features/thinking_sphinx/db/fixtures/authors.rb
399
+ - features/thinking_sphinx/db/fixtures/betas.rb
400
+ - features/thinking_sphinx/db/fixtures/boxes.rb
401
+ - features/thinking_sphinx/db/fixtures/categories.rb
402
+ - features/thinking_sphinx/db/fixtures/cats.rb
403
+ - features/thinking_sphinx/db/fixtures/comments.rb
404
+ - features/thinking_sphinx/db/fixtures/developers.rb
405
+ - features/thinking_sphinx/db/fixtures/dogs.rb
406
+ - features/thinking_sphinx/db/fixtures/extensible_betas.rb
407
+ - features/thinking_sphinx/db/fixtures/foxes.rb
408
+ - features/thinking_sphinx/db/fixtures/gammas.rb
409
+ - features/thinking_sphinx/db/fixtures/music.rb
410
+ - features/thinking_sphinx/db/fixtures/people.rb
411
+ - features/thinking_sphinx/db/fixtures/posts.rb
412
+ - features/thinking_sphinx/db/fixtures/robots.rb
413
+ - features/thinking_sphinx/db/fixtures/tags.rb
414
+ - features/thinking_sphinx/db/migrations/create_alphas.rb
415
+ - features/thinking_sphinx/db/migrations/create_animals.rb
416
+ - features/thinking_sphinx/db/migrations/create_authors.rb
417
+ - features/thinking_sphinx/db/migrations/create_authors_posts.rb
418
+ - features/thinking_sphinx/db/migrations/create_betas.rb
419
+ - features/thinking_sphinx/db/migrations/create_boxes.rb
420
+ - features/thinking_sphinx/db/migrations/create_categories.rb
421
+ - features/thinking_sphinx/db/migrations/create_comments.rb
422
+ - features/thinking_sphinx/db/migrations/create_developers.rb
423
+ - features/thinking_sphinx/db/migrations/create_extensible_betas.rb
424
+ - features/thinking_sphinx/db/migrations/create_gammas.rb
425
+ - features/thinking_sphinx/db/migrations/create_genres.rb
426
+ - features/thinking_sphinx/db/migrations/create_music.rb
427
+ - features/thinking_sphinx/db/migrations/create_people.rb
428
+ - features/thinking_sphinx/db/migrations/create_posts.rb
429
+ - features/thinking_sphinx/db/migrations/create_robots.rb
430
+ - features/thinking_sphinx/db/migrations/create_taggings.rb
431
+ - features/thinking_sphinx/db/migrations/create_tags.rb
432
+ - features/thinking_sphinx/models/alpha.rb
433
+ - features/thinking_sphinx/models/animal.rb
434
+ - features/thinking_sphinx/models/author.rb
435
+ - features/thinking_sphinx/models/beta.rb
436
+ - features/thinking_sphinx/models/box.rb
437
+ - features/thinking_sphinx/models/cat.rb
438
+ - features/thinking_sphinx/models/category.rb
439
+ - features/thinking_sphinx/models/comment.rb
440
+ - features/thinking_sphinx/models/developer.rb
441
+ - features/thinking_sphinx/models/dog.rb
442
+ - features/thinking_sphinx/models/extensible_beta.rb
443
+ - features/thinking_sphinx/models/fox.rb
444
+ - features/thinking_sphinx/models/gamma.rb
445
+ - features/thinking_sphinx/models/genre.rb
446
+ - features/thinking_sphinx/models/medium.rb
447
+ - features/thinking_sphinx/models/music.rb
448
+ - features/thinking_sphinx/models/person.rb
449
+ - features/thinking_sphinx/models/post.rb
450
+ - features/thinking_sphinx/models/robot.rb
451
+ - features/thinking_sphinx/models/tag.rb
452
+ - features/thinking_sphinx/models/tagging.rb
453
+ - spec/thinking_sphinx/active_record/delta_spec.rb
454
+ - spec/thinking_sphinx/active_record/has_many_association_spec.rb
455
+ - spec/thinking_sphinx/active_record/scopes_spec.rb
456
+ - spec/thinking_sphinx/active_record_spec.rb
457
+ - spec/thinking_sphinx/association_spec.rb
458
+ - spec/thinking_sphinx/attribute_spec.rb
459
+ - spec/thinking_sphinx/auto_version_spec.rb
460
+ - spec/thinking_sphinx/configuration_spec.rb
461
+ - spec/thinking_sphinx/context_spec.rb
462
+ - spec/thinking_sphinx/core/array_spec.rb
463
+ - spec/thinking_sphinx/core/string_spec.rb
464
+ - spec/thinking_sphinx/excerpter_spec.rb
465
+ - spec/thinking_sphinx/facet_search_spec.rb
466
+ - spec/thinking_sphinx/facet_spec.rb
467
+ - spec/thinking_sphinx/field_spec.rb
468
+ - spec/thinking_sphinx/index/builder_spec.rb
469
+ - spec/thinking_sphinx/index/faux_column_spec.rb
470
+ - spec/thinking_sphinx/index_spec.rb
471
+ - spec/thinking_sphinx/rails_additions_spec.rb
472
+ - spec/thinking_sphinx/search_methods_spec.rb
473
+ - spec/thinking_sphinx/search_spec.rb
474
+ - spec/thinking_sphinx/source_spec.rb
475
+ - spec/thinking_sphinx_spec.rb