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.
- data/README.textile +37 -4
- data/VERSION +1 -0
- data/features/abstract_inheritance.feature +10 -0
- data/features/alternate_primary_key.feature +1 -1
- data/features/attribute_updates.feature +49 -5
- data/features/deleting_instances.feature +3 -0
- data/features/excerpts.feature +8 -0
- data/features/facets.feature +15 -1
- data/features/facets_across_model.feature +2 -2
- data/features/field_sorting.feature +18 -0
- data/features/handling_edits.feature +1 -1
- data/features/searching_across_models.feature +2 -2
- data/features/searching_by_index.feature +40 -0
- data/features/searching_by_model.feature +1 -8
- data/features/sphinx_scopes.feature +33 -0
- data/features/step_definitions/alpha_steps.rb +14 -1
- data/features/step_definitions/beta_steps.rb +1 -1
- data/features/step_definitions/common_steps.rb +21 -2
- data/features/step_definitions/facet_steps.rb +4 -0
- data/features/step_definitions/scope_steps.rb +8 -0
- data/features/step_definitions/search_steps.rb +5 -0
- data/features/step_definitions/sphinx_steps.rb +8 -4
- data/features/sti_searching.feature +5 -0
- data/features/support/env.rb +7 -6
- data/features/{support → thinking_sphinx}/db/fixtures/betas.rb +1 -0
- data/features/{support → thinking_sphinx}/db/fixtures/comments.rb +1 -1
- data/features/{support → thinking_sphinx}/db/fixtures/developers.rb +2 -0
- data/features/thinking_sphinx/db/fixtures/foxes.rb +3 -0
- data/features/thinking_sphinx/db/fixtures/music.rb +4 -0
- data/features/{support → thinking_sphinx}/db/fixtures/people.rb +1 -1
- data/features/{support → thinking_sphinx}/db/fixtures/tags.rb +1 -1
- data/features/{support → thinking_sphinx}/db/migrations/create_alphas.rb +1 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_developers.rb +0 -2
- 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/models/alpha.rb +23 -0
- data/features/thinking_sphinx/models/andrew.rb +17 -0
- data/features/{support → thinking_sphinx}/models/beta.rb +1 -1
- data/features/{support → thinking_sphinx}/models/developer.rb +2 -2
- data/features/{support → thinking_sphinx}/models/extensible_beta.rb +1 -1
- data/features/thinking_sphinx/models/fox.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 +8 -0
- data/features/{support → thinking_sphinx}/models/person.rb +2 -1
- data/features/{support → thinking_sphinx}/models/post.rb +2 -1
- data/lib/cucumber/thinking_sphinx/external_world.rb +12 -0
- data/lib/cucumber/thinking_sphinx/internal_world.rb +13 -11
- data/lib/thinking_sphinx/active_record/attribute_updates.rb +17 -15
- data/lib/thinking_sphinx/active_record/delta.rb +0 -26
- data/lib/thinking_sphinx/active_record/has_many_association.rb +34 -11
- data/lib/thinking_sphinx/active_record/scopes.rb +46 -3
- data/lib/thinking_sphinx/active_record.rb +271 -193
- data/lib/thinking_sphinx/adapters/abstract_adapter.rb +45 -9
- data/lib/thinking_sphinx/adapters/mysql_adapter.rb +5 -1
- data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +9 -1
- data/lib/thinking_sphinx/attribute.rb +67 -23
- data/lib/thinking_sphinx/auto_version.rb +24 -0
- data/lib/thinking_sphinx/bundled_search.rb +44 -0
- data/lib/thinking_sphinx/class_facet.rb +3 -2
- data/lib/thinking_sphinx/configuration.rb +78 -64
- data/lib/thinking_sphinx/context.rb +76 -0
- data/lib/thinking_sphinx/deltas/default_delta.rb +14 -20
- data/lib/thinking_sphinx/deltas.rb +0 -2
- data/lib/thinking_sphinx/deploy/capistrano.rb +1 -1
- data/lib/thinking_sphinx/excerpter.rb +1 -1
- data/lib/thinking_sphinx/facet.rb +6 -5
- data/lib/thinking_sphinx/facet_search.rb +54 -24
- data/lib/thinking_sphinx/field.rb +2 -4
- data/lib/thinking_sphinx/index/builder.rb +36 -20
- data/lib/thinking_sphinx/index/faux_column.rb +8 -0
- data/lib/thinking_sphinx/index.rb +77 -19
- data/lib/thinking_sphinx/join.rb +37 -0
- data/lib/thinking_sphinx/property.rb +9 -2
- data/lib/thinking_sphinx/rails_additions.rb +4 -4
- data/lib/thinking_sphinx/search.rb +212 -66
- data/lib/thinking_sphinx/search_methods.rb +22 -4
- data/lib/thinking_sphinx/source/internal_properties.rb +2 -2
- data/lib/thinking_sphinx/source/sql.rb +5 -3
- data/lib/thinking_sphinx/source.rb +21 -12
- data/lib/thinking_sphinx/tasks.rb +26 -58
- data/lib/thinking_sphinx/test.rb +55 -0
- data/lib/thinking_sphinx.rb +70 -38
- data/rails/init.rb +4 -2
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/active_record/delta_spec.rb +6 -8
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/active_record/has_many_association_spec.rb +26 -3
- data/spec/thinking_sphinx/active_record/scopes_spec.rb +176 -0
- data/spec/thinking_sphinx/active_record_spec.rb +618 -0
- data/spec/thinking_sphinx/adapters/abstract_adapter_spec.rb +134 -0
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/association_spec.rb +1 -1
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/attribute_spec.rb +87 -46
- data/spec/thinking_sphinx/auto_version_spec.rb +47 -0
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/configuration_spec.rb +73 -63
- data/spec/thinking_sphinx/context_spec.rb +127 -0
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/core/array_spec.rb +1 -1
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/core/string_spec.rb +1 -1
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/excerpter_spec.rb +1 -9
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/facet_search_spec.rb +76 -82
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/facet_spec.rb +5 -5
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/field_spec.rb +1 -42
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/index/builder_spec.rb +71 -31
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/index/faux_column_spec.rb +8 -2
- data/spec/thinking_sphinx/index_spec.rb +183 -0
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/rails_additions_spec.rb +5 -5
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/search_methods_spec.rb +5 -1
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/search_spec.rb +183 -31
- data/spec/{lib/thinking_sphinx → thinking_sphinx}/source_spec.rb +18 -2
- data/spec/thinking_sphinx/test_spec.rb +20 -0
- data/spec/thinking_sphinx_spec.rb +204 -0
- data/tasks/distribution.rb +7 -26
- data/tasks/testing.rb +32 -20
- metadata +488 -147
- data/VERSION.yml +0 -5
- data/features/datetime_deltas.feature +0 -66
- data/features/delayed_delta_indexing.feature +0 -37
- data/features/step_definitions/datetime_delta_steps.rb +0 -15
- data/features/step_definitions/delayed_delta_indexing_steps.rb +0 -7
- data/features/support/database.yml +0 -5
- data/features/support/db/active_record.rb +0 -40
- data/features/support/db/database.yml +0 -5
- data/features/support/db/fixtures/delayed_betas.rb +0 -10
- data/features/support/db/fixtures/thetas.rb +0 -10
- data/features/support/db/migrations/create_delayed_betas.rb +0 -17
- data/features/support/db/migrations/create_thetas.rb +0 -5
- data/features/support/db/mysql.rb +0 -3
- data/features/support/db/postgresql.rb +0 -3
- data/features/support/models/alpha.rb +0 -10
- data/features/support/models/delayed_beta.rb +0 -7
- data/features/support/models/theta.rb +0 -7
- data/features/support/post_database.rb +0 -43
- data/lib/thinking_sphinx/deltas/datetime_delta.rb +0 -50
- data/lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb +0 -24
- data/lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb +0 -27
- data/lib/thinking_sphinx/deltas/delayed_delta/job.rb +0 -26
- data/lib/thinking_sphinx/deltas/delayed_delta.rb +0 -30
- data/spec/lib/thinking_sphinx/active_record/scopes_spec.rb +0 -96
- data/spec/lib/thinking_sphinx/active_record_spec.rb +0 -353
- data/spec/lib/thinking_sphinx/deltas/job_spec.rb +0 -32
- data/spec/lib/thinking_sphinx/index_spec.rb +0 -45
- data/spec/lib/thinking_sphinx_spec.rb +0 -162
- data/vendor/after_commit/LICENSE +0 -20
- data/vendor/after_commit/README +0 -16
- data/vendor/after_commit/Rakefile +0 -22
- data/vendor/after_commit/init.rb +0 -8
- data/vendor/after_commit/lib/after_commit/active_record.rb +0 -114
- data/vendor/after_commit/lib/after_commit/connection_adapters.rb +0 -103
- data/vendor/after_commit/lib/after_commit.rb +0 -45
- data/vendor/after_commit/test/after_commit_test.rb +0 -53
- data/vendor/delayed_job/lib/delayed/job.rb +0 -251
- data/vendor/delayed_job/lib/delayed/message_sending.rb +0 -7
- data/vendor/delayed_job/lib/delayed/performable_method.rb +0 -55
- data/vendor/delayed_job/lib/delayed/worker.rb +0 -54
- data/vendor/riddle/lib/riddle/client/filter.rb +0 -53
- data/vendor/riddle/lib/riddle/client/message.rb +0 -66
- data/vendor/riddle/lib/riddle/client/response.rb +0 -84
- data/vendor/riddle/lib/riddle/client.rb +0 -635
- data/vendor/riddle/lib/riddle/configuration/distributed_index.rb +0 -48
- data/vendor/riddle/lib/riddle/configuration/index.rb +0 -142
- data/vendor/riddle/lib/riddle/configuration/indexer.rb +0 -19
- data/vendor/riddle/lib/riddle/configuration/remote_index.rb +0 -17
- data/vendor/riddle/lib/riddle/configuration/searchd.rb +0 -25
- data/vendor/riddle/lib/riddle/configuration/section.rb +0 -43
- data/vendor/riddle/lib/riddle/configuration/source.rb +0 -23
- data/vendor/riddle/lib/riddle/configuration/sql_source.rb +0 -34
- data/vendor/riddle/lib/riddle/configuration/xml_source.rb +0 -28
- data/vendor/riddle/lib/riddle/configuration.rb +0 -33
- data/vendor/riddle/lib/riddle/controller.rb +0 -53
- data/vendor/riddle/lib/riddle.rb +0 -30
- data/features/{support → thinking_sphinx}/database.example.yml +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/alphas.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/authors.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/boxes.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/categories.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/cats.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/dogs.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/extensible_betas.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/gammas.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/posts.rb +0 -0
- data/features/{support → thinking_sphinx}/db/fixtures/robots.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_animals.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_authors.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_authors_posts.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_betas.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_boxes.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_categories.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_comments.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_extensible_betas.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_gammas.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_people.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_posts.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_robots.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_taggings.rb +0 -0
- data/features/{support → thinking_sphinx}/db/migrations/create_tags.rb +0 -0
- data/features/{support → thinking_sphinx}/models/animal.rb +0 -0
- data/features/{support → thinking_sphinx}/models/author.rb +0 -0
- data/features/{support → thinking_sphinx}/models/box.rb +0 -0
- data/features/{support → thinking_sphinx}/models/cat.rb +0 -0
- data/features/{support → thinking_sphinx}/models/category.rb +0 -0
- data/features/{support → thinking_sphinx}/models/comment.rb +3 -3
- /data/features/{support → thinking_sphinx}/models/dog.rb +0 -0
- /data/features/{support → thinking_sphinx}/models/gamma.rb +0 -0
- /data/features/{support → thinking_sphinx}/models/robot.rb +0 -0
- /data/features/{support → thinking_sphinx}/models/tag.rb +0 -0
- /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
|
-
|
|
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:
|
|
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
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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
|
|
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
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
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
|
-
|
|
115
|
-
|
|
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
|
-
|
|
128
|
-
|
|
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.
|
|
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/
|
|
229
|
-
- features/
|
|
230
|
-
- features/
|
|
231
|
-
- features/
|
|
232
|
-
- features/
|
|
233
|
-
- features/
|
|
234
|
-
- features/
|
|
235
|
-
- features/
|
|
236
|
-
- features/
|
|
237
|
-
- features/
|
|
238
|
-
- features/
|
|
239
|
-
- features/
|
|
240
|
-
- features/
|
|
241
|
-
- features/
|
|
242
|
-
- features/
|
|
243
|
-
- features/
|
|
244
|
-
- features/
|
|
245
|
-
- features/
|
|
246
|
-
- features/
|
|
247
|
-
- features/
|
|
248
|
-
-
|
|
249
|
-
-
|
|
250
|
-
-
|
|
251
|
-
-
|
|
252
|
-
-
|
|
253
|
-
-
|
|
254
|
-
-
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
-
|
|
258
|
-
-
|
|
259
|
-
-
|
|
260
|
-
-
|
|
261
|
-
-
|
|
262
|
-
-
|
|
263
|
-
-
|
|
264
|
-
-
|
|
265
|
-
-
|
|
266
|
-
-
|
|
267
|
-
-
|
|
268
|
-
-
|
|
269
|
-
-
|
|
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
|