thinking-sphinx 1.2.13 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. data/README.textile +37 -4
  2. data/VERSION +1 -0
  3. data/features/abstract_inheritance.feature +10 -0
  4. data/features/alternate_primary_key.feature +1 -1
  5. data/features/attribute_updates.feature +49 -5
  6. data/features/deleting_instances.feature +3 -0
  7. data/features/excerpts.feature +8 -0
  8. data/features/facets.feature +15 -1
  9. data/features/facets_across_model.feature +2 -2
  10. data/features/field_sorting.feature +18 -0
  11. data/features/handling_edits.feature +1 -1
  12. data/features/searching_across_models.feature +2 -2
  13. data/features/searching_by_index.feature +40 -0
  14. data/features/searching_by_model.feature +1 -8
  15. data/features/sphinx_scopes.feature +33 -0
  16. data/features/step_definitions/alpha_steps.rb +14 -1
  17. data/features/step_definitions/beta_steps.rb +1 -1
  18. data/features/step_definitions/common_steps.rb +21 -2
  19. data/features/step_definitions/facet_steps.rb +4 -0
  20. data/features/step_definitions/scope_steps.rb +8 -0
  21. data/features/step_definitions/search_steps.rb +5 -0
  22. data/features/step_definitions/sphinx_steps.rb +8 -4
  23. data/features/sti_searching.feature +5 -0
  24. data/features/support/env.rb +7 -6
  25. data/features/{support → thinking_sphinx}/db/fixtures/betas.rb +1 -0
  26. data/features/{support → thinking_sphinx}/db/fixtures/comments.rb +1 -1
  27. data/features/{support → thinking_sphinx}/db/fixtures/developers.rb +2 -0
  28. data/features/thinking_sphinx/db/fixtures/foxes.rb +3 -0
  29. data/features/thinking_sphinx/db/fixtures/music.rb +4 -0
  30. data/features/{support → thinking_sphinx}/db/fixtures/people.rb +1 -1
  31. data/features/{support → thinking_sphinx}/db/fixtures/tags.rb +1 -1
  32. data/features/{support → thinking_sphinx}/db/migrations/create_alphas.rb +1 -0
  33. data/features/{support → thinking_sphinx}/db/migrations/create_developers.rb +0 -2
  34. data/features/thinking_sphinx/db/migrations/create_genres.rb +3 -0
  35. data/features/thinking_sphinx/db/migrations/create_music.rb +6 -0
  36. data/features/thinking_sphinx/models/alpha.rb +23 -0
  37. data/features/thinking_sphinx/models/andrew.rb +17 -0
  38. data/features/{support → thinking_sphinx}/models/beta.rb +1 -1
  39. data/features/{support → thinking_sphinx}/models/developer.rb +2 -2
  40. data/features/{support → thinking_sphinx}/models/extensible_beta.rb +1 -1
  41. data/features/thinking_sphinx/models/fox.rb +5 -0
  42. data/features/thinking_sphinx/models/genre.rb +3 -0
  43. data/features/thinking_sphinx/models/medium.rb +5 -0
  44. data/features/thinking_sphinx/models/music.rb +8 -0
  45. data/features/{support → thinking_sphinx}/models/person.rb +2 -1
  46. data/features/{support → thinking_sphinx}/models/post.rb +2 -1
  47. data/lib/cucumber/thinking_sphinx/external_world.rb +12 -0
  48. data/lib/cucumber/thinking_sphinx/internal_world.rb +13 -11
  49. data/lib/thinking_sphinx/active_record/attribute_updates.rb +17 -15
  50. data/lib/thinking_sphinx/active_record/delta.rb +0 -26
  51. data/lib/thinking_sphinx/active_record/has_many_association.rb +34 -11
  52. data/lib/thinking_sphinx/active_record/scopes.rb +46 -3
  53. data/lib/thinking_sphinx/active_record.rb +271 -193
  54. data/lib/thinking_sphinx/adapters/abstract_adapter.rb +45 -9
  55. data/lib/thinking_sphinx/adapters/mysql_adapter.rb +5 -1
  56. data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +9 -1
  57. data/lib/thinking_sphinx/attribute.rb +67 -23
  58. data/lib/thinking_sphinx/auto_version.rb +24 -0
  59. data/lib/thinking_sphinx/bundled_search.rb +44 -0
  60. data/lib/thinking_sphinx/class_facet.rb +3 -2
  61. data/lib/thinking_sphinx/configuration.rb +78 -64
  62. data/lib/thinking_sphinx/context.rb +76 -0
  63. data/lib/thinking_sphinx/deltas/default_delta.rb +14 -20
  64. data/lib/thinking_sphinx/deltas.rb +0 -2
  65. data/lib/thinking_sphinx/deploy/capistrano.rb +1 -1
  66. data/lib/thinking_sphinx/excerpter.rb +1 -1
  67. data/lib/thinking_sphinx/facet.rb +6 -5
  68. data/lib/thinking_sphinx/facet_search.rb +54 -24
  69. data/lib/thinking_sphinx/field.rb +2 -4
  70. data/lib/thinking_sphinx/index/builder.rb +36 -20
  71. data/lib/thinking_sphinx/index/faux_column.rb +8 -0
  72. data/lib/thinking_sphinx/index.rb +77 -19
  73. data/lib/thinking_sphinx/join.rb +37 -0
  74. data/lib/thinking_sphinx/property.rb +9 -2
  75. data/lib/thinking_sphinx/rails_additions.rb +4 -4
  76. data/lib/thinking_sphinx/search.rb +212 -66
  77. data/lib/thinking_sphinx/search_methods.rb +22 -4
  78. data/lib/thinking_sphinx/source/internal_properties.rb +2 -2
  79. data/lib/thinking_sphinx/source/sql.rb +5 -3
  80. data/lib/thinking_sphinx/source.rb +21 -12
  81. data/lib/thinking_sphinx/tasks.rb +26 -58
  82. data/lib/thinking_sphinx/test.rb +55 -0
  83. data/lib/thinking_sphinx.rb +70 -38
  84. data/rails/init.rb +4 -2
  85. data/spec/{lib/thinking_sphinx → thinking_sphinx}/active_record/delta_spec.rb +6 -8
  86. data/spec/{lib/thinking_sphinx → thinking_sphinx}/active_record/has_many_association_spec.rb +26 -3
  87. data/spec/thinking_sphinx/active_record/scopes_spec.rb +176 -0
  88. data/spec/thinking_sphinx/active_record_spec.rb +618 -0
  89. data/spec/thinking_sphinx/adapters/abstract_adapter_spec.rb +134 -0
  90. data/spec/{lib/thinking_sphinx → thinking_sphinx}/association_spec.rb +1 -1
  91. data/spec/{lib/thinking_sphinx → thinking_sphinx}/attribute_spec.rb +87 -46
  92. data/spec/thinking_sphinx/auto_version_spec.rb +47 -0
  93. data/spec/{lib/thinking_sphinx → thinking_sphinx}/configuration_spec.rb +73 -63
  94. data/spec/thinking_sphinx/context_spec.rb +127 -0
  95. data/spec/{lib/thinking_sphinx → thinking_sphinx}/core/array_spec.rb +1 -1
  96. data/spec/{lib/thinking_sphinx → thinking_sphinx}/core/string_spec.rb +1 -1
  97. data/spec/{lib/thinking_sphinx → thinking_sphinx}/excerpter_spec.rb +1 -9
  98. data/spec/{lib/thinking_sphinx → thinking_sphinx}/facet_search_spec.rb +76 -82
  99. data/spec/{lib/thinking_sphinx → thinking_sphinx}/facet_spec.rb +5 -5
  100. data/spec/{lib/thinking_sphinx → thinking_sphinx}/field_spec.rb +1 -42
  101. data/spec/{lib/thinking_sphinx → thinking_sphinx}/index/builder_spec.rb +71 -31
  102. data/spec/{lib/thinking_sphinx → thinking_sphinx}/index/faux_column_spec.rb +8 -2
  103. data/spec/thinking_sphinx/index_spec.rb +183 -0
  104. data/spec/{lib/thinking_sphinx → thinking_sphinx}/rails_additions_spec.rb +5 -5
  105. data/spec/{lib/thinking_sphinx → thinking_sphinx}/search_methods_spec.rb +5 -1
  106. data/spec/{lib/thinking_sphinx → thinking_sphinx}/search_spec.rb +183 -31
  107. data/spec/{lib/thinking_sphinx → thinking_sphinx}/source_spec.rb +18 -2
  108. data/spec/thinking_sphinx/test_spec.rb +20 -0
  109. data/spec/thinking_sphinx_spec.rb +204 -0
  110. data/tasks/distribution.rb +7 -26
  111. data/tasks/testing.rb +32 -20
  112. metadata +488 -147
  113. data/VERSION.yml +0 -5
  114. data/features/datetime_deltas.feature +0 -66
  115. data/features/delayed_delta_indexing.feature +0 -37
  116. data/features/step_definitions/datetime_delta_steps.rb +0 -15
  117. data/features/step_definitions/delayed_delta_indexing_steps.rb +0 -7
  118. data/features/support/database.yml +0 -5
  119. data/features/support/db/active_record.rb +0 -40
  120. data/features/support/db/database.yml +0 -5
  121. data/features/support/db/fixtures/delayed_betas.rb +0 -10
  122. data/features/support/db/fixtures/thetas.rb +0 -10
  123. data/features/support/db/migrations/create_delayed_betas.rb +0 -17
  124. data/features/support/db/migrations/create_thetas.rb +0 -5
  125. data/features/support/db/mysql.rb +0 -3
  126. data/features/support/db/postgresql.rb +0 -3
  127. data/features/support/models/alpha.rb +0 -10
  128. data/features/support/models/delayed_beta.rb +0 -7
  129. data/features/support/models/theta.rb +0 -7
  130. data/features/support/post_database.rb +0 -43
  131. data/lib/thinking_sphinx/deltas/datetime_delta.rb +0 -50
  132. data/lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb +0 -24
  133. data/lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb +0 -27
  134. data/lib/thinking_sphinx/deltas/delayed_delta/job.rb +0 -26
  135. data/lib/thinking_sphinx/deltas/delayed_delta.rb +0 -30
  136. data/spec/lib/thinking_sphinx/active_record/scopes_spec.rb +0 -96
  137. data/spec/lib/thinking_sphinx/active_record_spec.rb +0 -353
  138. data/spec/lib/thinking_sphinx/deltas/job_spec.rb +0 -32
  139. data/spec/lib/thinking_sphinx/index_spec.rb +0 -45
  140. data/spec/lib/thinking_sphinx_spec.rb +0 -162
  141. data/vendor/after_commit/LICENSE +0 -20
  142. data/vendor/after_commit/README +0 -16
  143. data/vendor/after_commit/Rakefile +0 -22
  144. data/vendor/after_commit/init.rb +0 -8
  145. data/vendor/after_commit/lib/after_commit/active_record.rb +0 -114
  146. data/vendor/after_commit/lib/after_commit/connection_adapters.rb +0 -103
  147. data/vendor/after_commit/lib/after_commit.rb +0 -45
  148. data/vendor/after_commit/test/after_commit_test.rb +0 -53
  149. data/vendor/delayed_job/lib/delayed/job.rb +0 -251
  150. data/vendor/delayed_job/lib/delayed/message_sending.rb +0 -7
  151. data/vendor/delayed_job/lib/delayed/performable_method.rb +0 -55
  152. data/vendor/delayed_job/lib/delayed/worker.rb +0 -54
  153. data/vendor/riddle/lib/riddle/client/filter.rb +0 -53
  154. data/vendor/riddle/lib/riddle/client/message.rb +0 -66
  155. data/vendor/riddle/lib/riddle/client/response.rb +0 -84
  156. data/vendor/riddle/lib/riddle/client.rb +0 -635
  157. data/vendor/riddle/lib/riddle/configuration/distributed_index.rb +0 -48
  158. data/vendor/riddle/lib/riddle/configuration/index.rb +0 -142
  159. data/vendor/riddle/lib/riddle/configuration/indexer.rb +0 -19
  160. data/vendor/riddle/lib/riddle/configuration/remote_index.rb +0 -17
  161. data/vendor/riddle/lib/riddle/configuration/searchd.rb +0 -25
  162. data/vendor/riddle/lib/riddle/configuration/section.rb +0 -43
  163. data/vendor/riddle/lib/riddle/configuration/source.rb +0 -23
  164. data/vendor/riddle/lib/riddle/configuration/sql_source.rb +0 -34
  165. data/vendor/riddle/lib/riddle/configuration/xml_source.rb +0 -28
  166. data/vendor/riddle/lib/riddle/configuration.rb +0 -33
  167. data/vendor/riddle/lib/riddle/controller.rb +0 -53
  168. data/vendor/riddle/lib/riddle.rb +0 -30
  169. data/features/{support → thinking_sphinx}/database.example.yml +0 -0
  170. data/features/{support → thinking_sphinx}/db/fixtures/alphas.rb +0 -0
  171. data/features/{support → thinking_sphinx}/db/fixtures/authors.rb +0 -0
  172. data/features/{support → thinking_sphinx}/db/fixtures/boxes.rb +0 -0
  173. data/features/{support → thinking_sphinx}/db/fixtures/categories.rb +0 -0
  174. data/features/{support → thinking_sphinx}/db/fixtures/cats.rb +0 -0
  175. data/features/{support → thinking_sphinx}/db/fixtures/dogs.rb +0 -0
  176. data/features/{support → thinking_sphinx}/db/fixtures/extensible_betas.rb +0 -0
  177. data/features/{support → thinking_sphinx}/db/fixtures/gammas.rb +0 -0
  178. data/features/{support → thinking_sphinx}/db/fixtures/posts.rb +0 -0
  179. data/features/{support → thinking_sphinx}/db/fixtures/robots.rb +0 -0
  180. data/features/{support → thinking_sphinx}/db/migrations/create_animals.rb +0 -0
  181. data/features/{support → thinking_sphinx}/db/migrations/create_authors.rb +0 -0
  182. data/features/{support → thinking_sphinx}/db/migrations/create_authors_posts.rb +0 -0
  183. data/features/{support → thinking_sphinx}/db/migrations/create_betas.rb +0 -0
  184. data/features/{support → thinking_sphinx}/db/migrations/create_boxes.rb +0 -0
  185. data/features/{support → thinking_sphinx}/db/migrations/create_categories.rb +0 -0
  186. data/features/{support → thinking_sphinx}/db/migrations/create_comments.rb +0 -0
  187. data/features/{support → thinking_sphinx}/db/migrations/create_extensible_betas.rb +0 -0
  188. data/features/{support → thinking_sphinx}/db/migrations/create_gammas.rb +0 -0
  189. data/features/{support → thinking_sphinx}/db/migrations/create_people.rb +0 -0
  190. data/features/{support → thinking_sphinx}/db/migrations/create_posts.rb +0 -0
  191. data/features/{support → thinking_sphinx}/db/migrations/create_robots.rb +0 -0
  192. data/features/{support → thinking_sphinx}/db/migrations/create_taggings.rb +0 -0
  193. data/features/{support → thinking_sphinx}/db/migrations/create_tags.rb +0 -0
  194. data/features/{support → thinking_sphinx}/models/animal.rb +0 -0
  195. data/features/{support → thinking_sphinx}/models/author.rb +0 -0
  196. data/features/{support → thinking_sphinx}/models/box.rb +0 -0
  197. data/features/{support → thinking_sphinx}/models/cat.rb +0 -0
  198. data/features/{support → thinking_sphinx}/models/category.rb +0 -0
  199. data/features/{support → thinking_sphinx}/models/comment.rb +3 -3
  200. /data/features/{support → thinking_sphinx}/models/dog.rb +0 -0
  201. /data/features/{support → thinking_sphinx}/models/gamma.rb +0 -0
  202. /data/features/{support → thinking_sphinx}/models/robot.rb +0 -0
  203. /data/features/{support → thinking_sphinx}/models/tag.rb +0 -0
  204. /data/features/{support → thinking_sphinx}/models/tagging.rb +0 -0
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thinking-sphinx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.13
4
+ hash: 7
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 4
9
+ - 0
10
+ version: 1.4.0
5
11
  platform: ruby
6
12
  authors:
7
13
  - Pat Allan
@@ -9,19 +15,274 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-11-01 00:00:00 +11:00
18
+ date: 2010-11-15 00:00:00 +08:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
- name: activerecord
17
22
  type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ name: activerecord
25
+ version_requirements: &id001 !ruby/object:Gem::Requirement
26
+ none: false
20
27
  requirements:
21
28
  - - ">="
22
29
  - !ruby/object:Gem::Version
30
+ hash: 39
31
+ segments:
32
+ - 1
33
+ - 15
34
+ - 6
23
35
  version: 1.15.6
24
- version:
36
+ - - <
37
+ - !ruby/object:Gem::Version
38
+ hash: 7
39
+ segments:
40
+ - 3
41
+ - 0
42
+ - 0
43
+ version: 3.0.0
44
+ requirement: *id001
45
+ - !ruby/object:Gem::Dependency
46
+ type: :runtime
47
+ prerelease: false
48
+ name: riddle
49
+ version_requirements: &id002 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ hash: 31
55
+ segments:
56
+ - 1
57
+ - 2
58
+ - 0
59
+ version: 1.2.0
60
+ requirement: *id002
61
+ - !ruby/object:Gem::Dependency
62
+ type: :runtime
63
+ prerelease: false
64
+ name: after_commit
65
+ version_requirements: &id003 !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ hash: 25
71
+ segments:
72
+ - 1
73
+ - 0
74
+ - 7
75
+ version: 1.0.7
76
+ requirement: *id003
77
+ - !ruby/object:Gem::Dependency
78
+ type: :development
79
+ prerelease: false
80
+ name: mysql
81
+ version_requirements: &id004 !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - "="
85
+ - !ruby/object:Gem::Version
86
+ hash: 45
87
+ segments:
88
+ - 2
89
+ - 8
90
+ - 1
91
+ version: 2.8.1
92
+ requirement: *id004
93
+ - !ruby/object:Gem::Dependency
94
+ type: :development
95
+ prerelease: false
96
+ name: pg
97
+ version_requirements: &id005 !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - "="
101
+ - !ruby/object:Gem::Version
102
+ hash: 59
103
+ segments:
104
+ - 0
105
+ - 9
106
+ - 0
107
+ version: 0.9.0
108
+ requirement: *id005
109
+ - !ruby/object:Gem::Dependency
110
+ type: :development
111
+ prerelease: false
112
+ name: jeweler
113
+ version_requirements: &id006 !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - "="
117
+ - !ruby/object:Gem::Version
118
+ hash: -1876988220
119
+ segments:
120
+ - 1
121
+ - 5
122
+ - 0
123
+ - pre5
124
+ version: 1.5.0.pre5
125
+ requirement: *id006
126
+ - !ruby/object:Gem::Dependency
127
+ type: :development
128
+ prerelease: false
129
+ name: yard
130
+ version_requirements: &id007 !ruby/object:Gem::Requirement
131
+ none: false
132
+ requirements:
133
+ - - "="
134
+ - !ruby/object:Gem::Version
135
+ hash: 5
136
+ segments:
137
+ - 0
138
+ - 6
139
+ - 1
140
+ version: 0.6.1
141
+ requirement: *id007
142
+ - !ruby/object:Gem::Dependency
143
+ type: :development
144
+ prerelease: false
145
+ name: rspec
146
+ version_requirements: &id008 !ruby/object:Gem::Requirement
147
+ none: false
148
+ requirements:
149
+ - - "="
150
+ - !ruby/object:Gem::Version
151
+ hash: 13
152
+ segments:
153
+ - 2
154
+ - 0
155
+ - 1
156
+ version: 2.0.1
157
+ requirement: *id008
158
+ - !ruby/object:Gem::Dependency
159
+ type: :development
160
+ prerelease: false
161
+ name: rspec-core
162
+ version_requirements: &id009 !ruby/object:Gem::Requirement
163
+ none: false
164
+ requirements:
165
+ - - "="
166
+ - !ruby/object:Gem::Version
167
+ hash: 13
168
+ segments:
169
+ - 2
170
+ - 0
171
+ - 1
172
+ version: 2.0.1
173
+ requirement: *id009
174
+ - !ruby/object:Gem::Dependency
175
+ type: :development
176
+ prerelease: false
177
+ name: rspec-expectations
178
+ version_requirements: &id010 !ruby/object:Gem::Requirement
179
+ none: false
180
+ requirements:
181
+ - - "="
182
+ - !ruby/object:Gem::Version
183
+ hash: 13
184
+ segments:
185
+ - 2
186
+ - 0
187
+ - 1
188
+ version: 2.0.1
189
+ requirement: *id010
190
+ - !ruby/object:Gem::Dependency
191
+ type: :development
192
+ prerelease: false
193
+ name: rspec-mocks
194
+ version_requirements: &id011 !ruby/object:Gem::Requirement
195
+ none: false
196
+ requirements:
197
+ - - "="
198
+ - !ruby/object:Gem::Version
199
+ hash: 13
200
+ segments:
201
+ - 2
202
+ - 0
203
+ - 1
204
+ version: 2.0.1
205
+ requirement: *id011
206
+ - !ruby/object:Gem::Dependency
207
+ type: :development
208
+ prerelease: false
209
+ name: rcov
210
+ version_requirements: &id012 !ruby/object:Gem::Requirement
211
+ none: false
212
+ requirements:
213
+ - - "="
214
+ - !ruby/object:Gem::Version
215
+ hash: 43
216
+ segments:
217
+ - 0
218
+ - 9
219
+ - 8
220
+ version: 0.9.8
221
+ requirement: *id012
222
+ - !ruby/object:Gem::Dependency
223
+ type: :development
224
+ prerelease: false
225
+ name: cucumber
226
+ version_requirements: &id013 !ruby/object:Gem::Requirement
227
+ none: false
228
+ requirements:
229
+ - - "="
230
+ - !ruby/object:Gem::Version
231
+ hash: 51
232
+ segments:
233
+ - 0
234
+ - 9
235
+ - 4
236
+ version: 0.9.4
237
+ requirement: *id013
238
+ - !ruby/object:Gem::Dependency
239
+ type: :development
240
+ prerelease: false
241
+ name: will_paginate
242
+ version_requirements: &id014 !ruby/object:Gem::Requirement
243
+ none: false
244
+ requirements:
245
+ - - "="
246
+ - !ruby/object:Gem::Version
247
+ hash: 29
248
+ segments:
249
+ - 2
250
+ - 3
251
+ - 15
252
+ version: 2.3.15
253
+ requirement: *id014
254
+ - !ruby/object:Gem::Dependency
255
+ type: :development
256
+ prerelease: false
257
+ name: ginger
258
+ version_requirements: &id015 !ruby/object:Gem::Requirement
259
+ none: false
260
+ requirements:
261
+ - - "="
262
+ - !ruby/object:Gem::Version
263
+ hash: 31
264
+ segments:
265
+ - 1
266
+ - 2
267
+ - 0
268
+ version: 1.2.0
269
+ requirement: *id015
270
+ - !ruby/object:Gem::Dependency
271
+ type: :development
272
+ prerelease: false
273
+ name: faker
274
+ version_requirements: &id016 !ruby/object:Gem::Requirement
275
+ none: false
276
+ requirements:
277
+ - - "="
278
+ - !ruby/object:Gem::Version
279
+ hash: 17
280
+ segments:
281
+ - 0
282
+ - 3
283
+ - 1
284
+ version: 0.3.1
285
+ requirement: *id016
25
286
  description: A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.
26
287
  email: pat@freelancing-gods.com
27
288
  executables: []
@@ -33,7 +294,8 @@ extra_rdoc_files:
33
294
  files:
34
295
  - LICENCE
35
296
  - README.textile
36
- - VERSION.yml
297
+ - VERSION
298
+ - lib/cucumber/thinking_sphinx/external_world.rb
37
299
  - lib/cucumber/thinking_sphinx/internal_world.rb
38
300
  - lib/cucumber/thinking_sphinx/sql_logger.rb
39
301
  - lib/thinking_sphinx.rb
@@ -47,17 +309,15 @@ files:
47
309
  - lib/thinking_sphinx/adapters/postgresql_adapter.rb
48
310
  - lib/thinking_sphinx/association.rb
49
311
  - lib/thinking_sphinx/attribute.rb
312
+ - lib/thinking_sphinx/auto_version.rb
313
+ - lib/thinking_sphinx/bundled_search.rb
50
314
  - lib/thinking_sphinx/class_facet.rb
51
315
  - lib/thinking_sphinx/configuration.rb
316
+ - lib/thinking_sphinx/context.rb
52
317
  - lib/thinking_sphinx/core/array.rb
53
318
  - lib/thinking_sphinx/core/string.rb
54
319
  - lib/thinking_sphinx/deltas.rb
55
- - lib/thinking_sphinx/deltas/datetime_delta.rb
56
320
  - lib/thinking_sphinx/deltas/default_delta.rb
57
- - lib/thinking_sphinx/deltas/delayed_delta.rb
58
- - lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb
59
- - lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb
60
- - lib/thinking_sphinx/deltas/delayed_delta/job.rb
61
321
  - lib/thinking_sphinx/deploy/capistrano.rb
62
322
  - lib/thinking_sphinx/excerpter.rb
63
323
  - lib/thinking_sphinx/facet.rb
@@ -66,6 +326,7 @@ files:
66
326
  - lib/thinking_sphinx/index.rb
67
327
  - lib/thinking_sphinx/index/builder.rb
68
328
  - lib/thinking_sphinx/index/faux_column.rb
329
+ - lib/thinking_sphinx/join.rb
69
330
  - lib/thinking_sphinx/property.rb
70
331
  - lib/thinking_sphinx/rails_additions.rb
71
332
  - lib/thinking_sphinx/search.rb
@@ -74,97 +335,179 @@ files:
74
335
  - lib/thinking_sphinx/source/internal_properties.rb
75
336
  - lib/thinking_sphinx/source/sql.rb
76
337
  - lib/thinking_sphinx/tasks.rb
338
+ - lib/thinking_sphinx/test.rb
77
339
  - rails/init.rb
78
340
  - tasks/distribution.rb
79
341
  - tasks/rails.rake
80
342
  - tasks/testing.rb
81
- - vendor/after_commit/LICENSE
82
- - vendor/after_commit/README
83
- - vendor/after_commit/Rakefile
84
- - vendor/after_commit/init.rb
85
- - vendor/after_commit/lib/after_commit.rb
86
- - vendor/after_commit/lib/after_commit/active_record.rb
87
- - vendor/after_commit/lib/after_commit/connection_adapters.rb
88
- - vendor/after_commit/test/after_commit_test.rb
89
- - vendor/delayed_job/lib/delayed/job.rb
90
- - vendor/delayed_job/lib/delayed/message_sending.rb
91
- - vendor/delayed_job/lib/delayed/performable_method.rb
92
- - vendor/delayed_job/lib/delayed/worker.rb
93
- - vendor/riddle/lib/riddle.rb
94
- - vendor/riddle/lib/riddle/client.rb
95
- - vendor/riddle/lib/riddle/client/filter.rb
96
- - vendor/riddle/lib/riddle/client/message.rb
97
- - vendor/riddle/lib/riddle/client/response.rb
98
- - vendor/riddle/lib/riddle/configuration.rb
99
- - vendor/riddle/lib/riddle/configuration/distributed_index.rb
100
- - vendor/riddle/lib/riddle/configuration/index.rb
101
- - vendor/riddle/lib/riddle/configuration/indexer.rb
102
- - vendor/riddle/lib/riddle/configuration/remote_index.rb
103
- - vendor/riddle/lib/riddle/configuration/searchd.rb
104
- - vendor/riddle/lib/riddle/configuration/section.rb
105
- - vendor/riddle/lib/riddle/configuration/source.rb
106
- - vendor/riddle/lib/riddle/configuration/sql_source.rb
107
- - vendor/riddle/lib/riddle/configuration/xml_source.rb
108
- - vendor/riddle/lib/riddle/controller.rb
343
+ - features/abstract_inheritance.feature
344
+ - features/alternate_primary_key.feature
345
+ - features/attribute_transformation.feature
346
+ - features/attribute_updates.feature
347
+ - features/deleting_instances.feature
348
+ - features/direct_attributes.feature
349
+ - features/excerpts.feature
350
+ - features/extensible_delta_indexing.feature
351
+ - features/facets.feature
352
+ - features/facets_across_model.feature
353
+ - features/field_sorting.feature
354
+ - features/handling_edits.feature
355
+ - features/retry_stale_indexes.feature
356
+ - features/searching_across_models.feature
357
+ - features/searching_by_index.feature
358
+ - features/searching_by_model.feature
359
+ - features/searching_with_find_arguments.feature
360
+ - features/sphinx_detection.feature
361
+ - features/sphinx_scopes.feature
362
+ - features/step_definitions/alpha_steps.rb
363
+ - features/step_definitions/beta_steps.rb
364
+ - features/step_definitions/common_steps.rb
365
+ - features/step_definitions/extensible_delta_indexing_steps.rb
366
+ - features/step_definitions/facet_steps.rb
367
+ - features/step_definitions/find_arguments_steps.rb
368
+ - features/step_definitions/gamma_steps.rb
369
+ - features/step_definitions/scope_steps.rb
370
+ - features/step_definitions/search_steps.rb
371
+ - features/step_definitions/sphinx_steps.rb
372
+ - features/sti_searching.feature
373
+ - features/support/env.rb
374
+ - features/support/lib/generic_delta_handler.rb
375
+ - features/thinking_sphinx/database.example.yml
376
+ - features/thinking_sphinx/db/fixtures/alphas.rb
377
+ - features/thinking_sphinx/db/fixtures/authors.rb
378
+ - features/thinking_sphinx/db/fixtures/betas.rb
379
+ - features/thinking_sphinx/db/fixtures/boxes.rb
380
+ - features/thinking_sphinx/db/fixtures/categories.rb
381
+ - features/thinking_sphinx/db/fixtures/cats.rb
382
+ - features/thinking_sphinx/db/fixtures/comments.rb
383
+ - features/thinking_sphinx/db/fixtures/developers.rb
384
+ - features/thinking_sphinx/db/fixtures/dogs.rb
385
+ - features/thinking_sphinx/db/fixtures/extensible_betas.rb
386
+ - features/thinking_sphinx/db/fixtures/foxes.rb
387
+ - features/thinking_sphinx/db/fixtures/gammas.rb
388
+ - features/thinking_sphinx/db/fixtures/music.rb
389
+ - features/thinking_sphinx/db/fixtures/people.rb
390
+ - features/thinking_sphinx/db/fixtures/posts.rb
391
+ - features/thinking_sphinx/db/fixtures/robots.rb
392
+ - features/thinking_sphinx/db/fixtures/tags.rb
393
+ - features/thinking_sphinx/db/migrations/create_alphas.rb
394
+ - features/thinking_sphinx/db/migrations/create_animals.rb
395
+ - features/thinking_sphinx/db/migrations/create_authors.rb
396
+ - features/thinking_sphinx/db/migrations/create_authors_posts.rb
397
+ - features/thinking_sphinx/db/migrations/create_betas.rb
398
+ - features/thinking_sphinx/db/migrations/create_boxes.rb
399
+ - features/thinking_sphinx/db/migrations/create_categories.rb
400
+ - features/thinking_sphinx/db/migrations/create_comments.rb
401
+ - features/thinking_sphinx/db/migrations/create_developers.rb
402
+ - features/thinking_sphinx/db/migrations/create_extensible_betas.rb
403
+ - features/thinking_sphinx/db/migrations/create_gammas.rb
404
+ - features/thinking_sphinx/db/migrations/create_genres.rb
405
+ - features/thinking_sphinx/db/migrations/create_music.rb
406
+ - features/thinking_sphinx/db/migrations/create_people.rb
407
+ - features/thinking_sphinx/db/migrations/create_posts.rb
408
+ - features/thinking_sphinx/db/migrations/create_robots.rb
409
+ - features/thinking_sphinx/db/migrations/create_taggings.rb
410
+ - features/thinking_sphinx/db/migrations/create_tags.rb
411
+ - features/thinking_sphinx/models/alpha.rb
412
+ - features/thinking_sphinx/models/andrew.rb
413
+ - features/thinking_sphinx/models/animal.rb
414
+ - features/thinking_sphinx/models/author.rb
415
+ - features/thinking_sphinx/models/beta.rb
416
+ - features/thinking_sphinx/models/box.rb
417
+ - features/thinking_sphinx/models/cat.rb
418
+ - features/thinking_sphinx/models/category.rb
419
+ - features/thinking_sphinx/models/comment.rb
420
+ - features/thinking_sphinx/models/developer.rb
421
+ - features/thinking_sphinx/models/dog.rb
422
+ - features/thinking_sphinx/models/extensible_beta.rb
423
+ - features/thinking_sphinx/models/fox.rb
424
+ - features/thinking_sphinx/models/gamma.rb
425
+ - features/thinking_sphinx/models/genre.rb
426
+ - features/thinking_sphinx/models/medium.rb
427
+ - features/thinking_sphinx/models/music.rb
428
+ - features/thinking_sphinx/models/person.rb
429
+ - features/thinking_sphinx/models/post.rb
430
+ - features/thinking_sphinx/models/robot.rb
431
+ - features/thinking_sphinx/models/tag.rb
432
+ - features/thinking_sphinx/models/tagging.rb
433
+ - spec/thinking_sphinx/active_record/delta_spec.rb
434
+ - spec/thinking_sphinx/active_record/has_many_association_spec.rb
435
+ - spec/thinking_sphinx/active_record/scopes_spec.rb
436
+ - spec/thinking_sphinx/active_record_spec.rb
437
+ - spec/thinking_sphinx/adapters/abstract_adapter_spec.rb
438
+ - spec/thinking_sphinx/association_spec.rb
439
+ - spec/thinking_sphinx/attribute_spec.rb
440
+ - spec/thinking_sphinx/auto_version_spec.rb
441
+ - spec/thinking_sphinx/configuration_spec.rb
442
+ - spec/thinking_sphinx/context_spec.rb
443
+ - spec/thinking_sphinx/core/array_spec.rb
444
+ - spec/thinking_sphinx/core/string_spec.rb
445
+ - spec/thinking_sphinx/excerpter_spec.rb
446
+ - spec/thinking_sphinx/facet_search_spec.rb
447
+ - spec/thinking_sphinx/facet_spec.rb
448
+ - spec/thinking_sphinx/field_spec.rb
449
+ - spec/thinking_sphinx/index/builder_spec.rb
450
+ - spec/thinking_sphinx/index/faux_column_spec.rb
451
+ - spec/thinking_sphinx/index_spec.rb
452
+ - spec/thinking_sphinx/rails_additions_spec.rb
453
+ - spec/thinking_sphinx/search_methods_spec.rb
454
+ - spec/thinking_sphinx/search_spec.rb
455
+ - spec/thinking_sphinx/source_spec.rb
456
+ - spec/thinking_sphinx/test_spec.rb
457
+ - spec/thinking_sphinx_spec.rb
109
458
  has_rdoc: true
110
459
  homepage: http://ts.freelancing-gods.com
111
460
  licenses: []
112
461
 
113
462
  post_install_message: |+
114
- With the release of Thinking Sphinx 1.1.18, there is one important change to
115
- note: previously, the default morphology for indexing was 'stem_en'. The new
116
- default is nil, to avoid any unexpected behavior. If you wish to keep the old
117
- value though, you will need to add the following settings to your
118
- config/sphinx.yml file:
119
-
120
- development:
121
- morphology: stem_en
122
- test:
123
- morphology: stem_en
124
- production:
125
- morphology: stem_en
463
+ If you're upgrading, you should read this:
464
+ http://freelancing-god.github.com/ts/en/upgrading.html
126
465
 
127
- To understand morphologies/stemmers better, visit the following link:
128
- http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
129
-
130
- rdoc_options:
131
- - --charset=UTF-8
466
+ rdoc_options: []
467
+
132
468
  require_paths:
133
469
  - lib
134
470
  required_ruby_version: !ruby/object:Gem::Requirement
471
+ none: false
135
472
  requirements:
136
473
  - - ">="
137
474
  - !ruby/object:Gem::Version
475
+ hash: 3
476
+ segments:
477
+ - 0
138
478
  version: "0"
139
- version:
140
479
  required_rubygems_version: !ruby/object:Gem::Requirement
480
+ none: false
141
481
  requirements:
142
482
  - - ">="
143
483
  - !ruby/object:Gem::Version
484
+ hash: 3
485
+ segments:
486
+ - 0
144
487
  version: "0"
145
- version:
146
488
  requirements: []
147
489
 
148
490
  rubyforge_project:
149
- rubygems_version: 1.3.5
491
+ rubygems_version: 1.3.7
150
492
  signing_key:
151
493
  specification_version: 3
152
494
  summary: ActiveRecord/Rails Sphinx library
153
495
  test_files:
496
+ - features/abstract_inheritance.feature
154
497
  - features/alternate_primary_key.feature
155
498
  - features/attribute_transformation.feature
156
499
  - features/attribute_updates.feature
157
- - features/datetime_deltas.feature
158
- - features/delayed_delta_indexing.feature
159
500
  - features/deleting_instances.feature
160
501
  - features/direct_attributes.feature
161
502
  - features/excerpts.feature
162
503
  - features/extensible_delta_indexing.feature
163
504
  - features/facets.feature
164
505
  - features/facets_across_model.feature
506
+ - features/field_sorting.feature
165
507
  - features/handling_edits.feature
166
508
  - features/retry_stale_indexes.feature
167
509
  - features/searching_across_models.feature
510
+ - features/searching_by_index.feature
168
511
  - features/searching_by_model.feature
169
512
  - features/searching_with_find_arguments.feature
170
513
  - features/sphinx_detection.feature
@@ -172,8 +515,6 @@ test_files:
172
515
  - features/step_definitions/alpha_steps.rb
173
516
  - features/step_definitions/beta_steps.rb
174
517
  - features/step_definitions/common_steps.rb
175
- - features/step_definitions/datetime_delta_steps.rb
176
- - features/step_definitions/delayed_delta_indexing_steps.rb
177
518
  - features/step_definitions/extensible_delta_indexing_steps.rb
178
519
  - features/step_definitions/facet_steps.rb
179
520
  - features/step_definitions/find_arguments_steps.rb
@@ -182,88 +523,88 @@ test_files:
182
523
  - features/step_definitions/search_steps.rb
183
524
  - features/step_definitions/sphinx_steps.rb
184
525
  - features/sti_searching.feature
185
- - features/support/database.example.yml
186
- - features/support/database.yml
187
- - features/support/db/active_record.rb
188
- - features/support/db/database.yml
189
- - features/support/db/fixtures/alphas.rb
190
- - features/support/db/fixtures/authors.rb
191
- - features/support/db/fixtures/betas.rb
192
- - features/support/db/fixtures/boxes.rb
193
- - features/support/db/fixtures/categories.rb
194
- - features/support/db/fixtures/cats.rb
195
- - features/support/db/fixtures/comments.rb
196
- - features/support/db/fixtures/delayed_betas.rb
197
- - features/support/db/fixtures/developers.rb
198
- - features/support/db/fixtures/dogs.rb
199
- - features/support/db/fixtures/extensible_betas.rb
200
- - features/support/db/fixtures/gammas.rb
201
- - features/support/db/fixtures/people.rb
202
- - features/support/db/fixtures/posts.rb
203
- - features/support/db/fixtures/robots.rb
204
- - features/support/db/fixtures/tags.rb
205
- - features/support/db/fixtures/thetas.rb
206
- - features/support/db/migrations/create_alphas.rb
207
- - features/support/db/migrations/create_animals.rb
208
- - features/support/db/migrations/create_authors.rb
209
- - features/support/db/migrations/create_authors_posts.rb
210
- - features/support/db/migrations/create_betas.rb
211
- - features/support/db/migrations/create_boxes.rb
212
- - features/support/db/migrations/create_categories.rb
213
- - features/support/db/migrations/create_comments.rb
214
- - features/support/db/migrations/create_delayed_betas.rb
215
- - features/support/db/migrations/create_developers.rb
216
- - features/support/db/migrations/create_extensible_betas.rb
217
- - features/support/db/migrations/create_gammas.rb
218
- - features/support/db/migrations/create_people.rb
219
- - features/support/db/migrations/create_posts.rb
220
- - features/support/db/migrations/create_robots.rb
221
- - features/support/db/migrations/create_taggings.rb
222
- - features/support/db/migrations/create_tags.rb
223
- - features/support/db/migrations/create_thetas.rb
224
- - features/support/db/mysql.rb
225
- - features/support/db/postgresql.rb
226
526
  - features/support/env.rb
227
527
  - features/support/lib/generic_delta_handler.rb
228
- - features/support/models/alpha.rb
229
- - features/support/models/animal.rb
230
- - features/support/models/author.rb
231
- - features/support/models/beta.rb
232
- - features/support/models/box.rb
233
- - features/support/models/cat.rb
234
- - features/support/models/category.rb
235
- - features/support/models/comment.rb
236
- - features/support/models/delayed_beta.rb
237
- - features/support/models/developer.rb
238
- - features/support/models/dog.rb
239
- - features/support/models/extensible_beta.rb
240
- - features/support/models/gamma.rb
241
- - features/support/models/person.rb
242
- - features/support/models/post.rb
243
- - features/support/models/robot.rb
244
- - features/support/models/tag.rb
245
- - features/support/models/tagging.rb
246
- - features/support/models/theta.rb
247
- - features/support/post_database.rb
248
- - spec/lib/thinking_sphinx/active_record/delta_spec.rb
249
- - spec/lib/thinking_sphinx/active_record/has_many_association_spec.rb
250
- - spec/lib/thinking_sphinx/active_record/scopes_spec.rb
251
- - spec/lib/thinking_sphinx/active_record_spec.rb
252
- - spec/lib/thinking_sphinx/association_spec.rb
253
- - spec/lib/thinking_sphinx/attribute_spec.rb
254
- - spec/lib/thinking_sphinx/configuration_spec.rb
255
- - spec/lib/thinking_sphinx/core/array_spec.rb
256
- - spec/lib/thinking_sphinx/core/string_spec.rb
257
- - spec/lib/thinking_sphinx/deltas/job_spec.rb
258
- - spec/lib/thinking_sphinx/excerpter_spec.rb
259
- - spec/lib/thinking_sphinx/facet_search_spec.rb
260
- - spec/lib/thinking_sphinx/facet_spec.rb
261
- - spec/lib/thinking_sphinx/field_spec.rb
262
- - spec/lib/thinking_sphinx/index/builder_spec.rb
263
- - spec/lib/thinking_sphinx/index/faux_column_spec.rb
264
- - spec/lib/thinking_sphinx/index_spec.rb
265
- - spec/lib/thinking_sphinx/rails_additions_spec.rb
266
- - spec/lib/thinking_sphinx/search_methods_spec.rb
267
- - spec/lib/thinking_sphinx/search_spec.rb
268
- - spec/lib/thinking_sphinx/source_spec.rb
269
- - spec/lib/thinking_sphinx_spec.rb
528
+ - features/thinking_sphinx/database.example.yml
529
+ - features/thinking_sphinx/db/fixtures/alphas.rb
530
+ - features/thinking_sphinx/db/fixtures/authors.rb
531
+ - features/thinking_sphinx/db/fixtures/betas.rb
532
+ - features/thinking_sphinx/db/fixtures/boxes.rb
533
+ - features/thinking_sphinx/db/fixtures/categories.rb
534
+ - features/thinking_sphinx/db/fixtures/cats.rb
535
+ - features/thinking_sphinx/db/fixtures/comments.rb
536
+ - features/thinking_sphinx/db/fixtures/developers.rb
537
+ - features/thinking_sphinx/db/fixtures/dogs.rb
538
+ - features/thinking_sphinx/db/fixtures/extensible_betas.rb
539
+ - features/thinking_sphinx/db/fixtures/foxes.rb
540
+ - features/thinking_sphinx/db/fixtures/gammas.rb
541
+ - features/thinking_sphinx/db/fixtures/music.rb
542
+ - features/thinking_sphinx/db/fixtures/people.rb
543
+ - features/thinking_sphinx/db/fixtures/posts.rb
544
+ - features/thinking_sphinx/db/fixtures/robots.rb
545
+ - features/thinking_sphinx/db/fixtures/tags.rb
546
+ - features/thinking_sphinx/db/migrations/create_alphas.rb
547
+ - features/thinking_sphinx/db/migrations/create_animals.rb
548
+ - features/thinking_sphinx/db/migrations/create_authors.rb
549
+ - features/thinking_sphinx/db/migrations/create_authors_posts.rb
550
+ - features/thinking_sphinx/db/migrations/create_betas.rb
551
+ - features/thinking_sphinx/db/migrations/create_boxes.rb
552
+ - features/thinking_sphinx/db/migrations/create_categories.rb
553
+ - features/thinking_sphinx/db/migrations/create_comments.rb
554
+ - features/thinking_sphinx/db/migrations/create_developers.rb
555
+ - features/thinking_sphinx/db/migrations/create_extensible_betas.rb
556
+ - features/thinking_sphinx/db/migrations/create_gammas.rb
557
+ - features/thinking_sphinx/db/migrations/create_genres.rb
558
+ - features/thinking_sphinx/db/migrations/create_music.rb
559
+ - features/thinking_sphinx/db/migrations/create_people.rb
560
+ - features/thinking_sphinx/db/migrations/create_posts.rb
561
+ - features/thinking_sphinx/db/migrations/create_robots.rb
562
+ - features/thinking_sphinx/db/migrations/create_taggings.rb
563
+ - features/thinking_sphinx/db/migrations/create_tags.rb
564
+ - features/thinking_sphinx/models/alpha.rb
565
+ - features/thinking_sphinx/models/andrew.rb
566
+ - features/thinking_sphinx/models/animal.rb
567
+ - features/thinking_sphinx/models/author.rb
568
+ - features/thinking_sphinx/models/beta.rb
569
+ - features/thinking_sphinx/models/box.rb
570
+ - features/thinking_sphinx/models/cat.rb
571
+ - features/thinking_sphinx/models/category.rb
572
+ - features/thinking_sphinx/models/comment.rb
573
+ - features/thinking_sphinx/models/developer.rb
574
+ - features/thinking_sphinx/models/dog.rb
575
+ - features/thinking_sphinx/models/extensible_beta.rb
576
+ - features/thinking_sphinx/models/fox.rb
577
+ - features/thinking_sphinx/models/gamma.rb
578
+ - features/thinking_sphinx/models/genre.rb
579
+ - features/thinking_sphinx/models/medium.rb
580
+ - features/thinking_sphinx/models/music.rb
581
+ - features/thinking_sphinx/models/person.rb
582
+ - features/thinking_sphinx/models/post.rb
583
+ - features/thinking_sphinx/models/robot.rb
584
+ - features/thinking_sphinx/models/tag.rb
585
+ - features/thinking_sphinx/models/tagging.rb
586
+ - spec/thinking_sphinx/active_record/delta_spec.rb
587
+ - spec/thinking_sphinx/active_record/has_many_association_spec.rb
588
+ - spec/thinking_sphinx/active_record/scopes_spec.rb
589
+ - spec/thinking_sphinx/active_record_spec.rb
590
+ - spec/thinking_sphinx/adapters/abstract_adapter_spec.rb
591
+ - spec/thinking_sphinx/association_spec.rb
592
+ - spec/thinking_sphinx/attribute_spec.rb
593
+ - spec/thinking_sphinx/auto_version_spec.rb
594
+ - spec/thinking_sphinx/configuration_spec.rb
595
+ - spec/thinking_sphinx/context_spec.rb
596
+ - spec/thinking_sphinx/core/array_spec.rb
597
+ - spec/thinking_sphinx/core/string_spec.rb
598
+ - spec/thinking_sphinx/excerpter_spec.rb
599
+ - spec/thinking_sphinx/facet_search_spec.rb
600
+ - spec/thinking_sphinx/facet_spec.rb
601
+ - spec/thinking_sphinx/field_spec.rb
602
+ - spec/thinking_sphinx/index/builder_spec.rb
603
+ - spec/thinking_sphinx/index/faux_column_spec.rb
604
+ - spec/thinking_sphinx/index_spec.rb
605
+ - spec/thinking_sphinx/rails_additions_spec.rb
606
+ - spec/thinking_sphinx/search_methods_spec.rb
607
+ - spec/thinking_sphinx/search_spec.rb
608
+ - spec/thinking_sphinx/source_spec.rb
609
+ - spec/thinking_sphinx/test_spec.rb
610
+ - spec/thinking_sphinx_spec.rb