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