thinking-sphinx-allen 1.3.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/LICENCE +20 -0
  2. data/README.textile +167 -0
  3. data/VERSION +1 -0
  4. data/features/abstract_inheritance.feature +10 -0
  5. data/features/alternate_primary_key.feature +27 -0
  6. data/features/attribute_transformation.feature +22 -0
  7. data/features/attribute_updates.feature +77 -0
  8. data/features/deleting_instances.feature +67 -0
  9. data/features/direct_attributes.feature +11 -0
  10. data/features/excerpts.feature +13 -0
  11. data/features/extensible_delta_indexing.feature +9 -0
  12. data/features/facets.feature +82 -0
  13. data/features/facets_across_model.feature +29 -0
  14. data/features/handling_edits.feature +92 -0
  15. data/features/retry_stale_indexes.feature +24 -0
  16. data/features/searching_across_models.feature +20 -0
  17. data/features/searching_by_index.feature +40 -0
  18. data/features/searching_by_model.feature +175 -0
  19. data/features/searching_with_find_arguments.feature +56 -0
  20. data/features/sphinx_detection.feature +25 -0
  21. data/features/sphinx_scopes.feature +42 -0
  22. data/features/step_definitions/alpha_steps.rb +16 -0
  23. data/features/step_definitions/beta_steps.rb +7 -0
  24. data/features/step_definitions/common_steps.rb +193 -0
  25. data/features/step_definitions/extensible_delta_indexing_steps.rb +7 -0
  26. data/features/step_definitions/facet_steps.rb +96 -0
  27. data/features/step_definitions/find_arguments_steps.rb +36 -0
  28. data/features/step_definitions/gamma_steps.rb +15 -0
  29. data/features/step_definitions/scope_steps.rb +15 -0
  30. data/features/step_definitions/search_steps.rb +89 -0
  31. data/features/step_definitions/sphinx_steps.rb +35 -0
  32. data/features/sti_searching.feature +19 -0
  33. data/features/support/env.rb +21 -0
  34. data/features/support/lib/generic_delta_handler.rb +8 -0
  35. data/features/thinking_sphinx/database.example.yml +3 -0
  36. data/features/thinking_sphinx/db/fixtures/alphas.rb +10 -0
  37. data/features/thinking_sphinx/db/fixtures/authors.rb +1 -0
  38. data/features/thinking_sphinx/db/fixtures/betas.rb +11 -0
  39. data/features/thinking_sphinx/db/fixtures/boxes.rb +9 -0
  40. data/features/thinking_sphinx/db/fixtures/categories.rb +1 -0
  41. data/features/thinking_sphinx/db/fixtures/cats.rb +3 -0
  42. data/features/thinking_sphinx/db/fixtures/comments.rb +24 -0
  43. data/features/thinking_sphinx/db/fixtures/developers.rb +31 -0
  44. data/features/thinking_sphinx/db/fixtures/dogs.rb +3 -0
  45. data/features/thinking_sphinx/db/fixtures/extensible_betas.rb +10 -0
  46. data/features/thinking_sphinx/db/fixtures/foxes.rb +3 -0
  47. data/features/thinking_sphinx/db/fixtures/gammas.rb +10 -0
  48. data/features/thinking_sphinx/db/fixtures/music.rb +4 -0
  49. data/features/thinking_sphinx/db/fixtures/people.rb +1001 -0
  50. data/features/thinking_sphinx/db/fixtures/posts.rb +6 -0
  51. data/features/thinking_sphinx/db/fixtures/robots.rb +14 -0
  52. data/features/thinking_sphinx/db/fixtures/tags.rb +27 -0
  53. data/features/thinking_sphinx/db/migrations/create_alphas.rb +8 -0
  54. data/features/thinking_sphinx/db/migrations/create_animals.rb +5 -0
  55. data/features/thinking_sphinx/db/migrations/create_authors.rb +3 -0
  56. data/features/thinking_sphinx/db/migrations/create_authors_posts.rb +6 -0
  57. data/features/thinking_sphinx/db/migrations/create_betas.rb +5 -0
  58. data/features/thinking_sphinx/db/migrations/create_boxes.rb +5 -0
  59. data/features/thinking_sphinx/db/migrations/create_categories.rb +3 -0
  60. data/features/thinking_sphinx/db/migrations/create_comments.rb +10 -0
  61. data/features/thinking_sphinx/db/migrations/create_developers.rb +7 -0
  62. data/features/thinking_sphinx/db/migrations/create_extensible_betas.rb +5 -0
  63. data/features/thinking_sphinx/db/migrations/create_gammas.rb +3 -0
  64. data/features/thinking_sphinx/db/migrations/create_genres.rb +3 -0
  65. data/features/thinking_sphinx/db/migrations/create_music.rb +6 -0
  66. data/features/thinking_sphinx/db/migrations/create_people.rb +13 -0
  67. data/features/thinking_sphinx/db/migrations/create_posts.rb +5 -0
  68. data/features/thinking_sphinx/db/migrations/create_robots.rb +4 -0
  69. data/features/thinking_sphinx/db/migrations/create_taggings.rb +5 -0
  70. data/features/thinking_sphinx/db/migrations/create_tags.rb +4 -0
  71. data/features/thinking_sphinx/models/alpha.rb +22 -0
  72. data/features/thinking_sphinx/models/animal.rb +5 -0
  73. data/features/thinking_sphinx/models/author.rb +3 -0
  74. data/features/thinking_sphinx/models/beta.rb +8 -0
  75. data/features/thinking_sphinx/models/box.rb +8 -0
  76. data/features/thinking_sphinx/models/cat.rb +3 -0
  77. data/features/thinking_sphinx/models/category.rb +4 -0
  78. data/features/thinking_sphinx/models/comment.rb +10 -0
  79. data/features/thinking_sphinx/models/developer.rb +16 -0
  80. data/features/thinking_sphinx/models/dog.rb +3 -0
  81. data/features/thinking_sphinx/models/extensible_beta.rb +9 -0
  82. data/features/thinking_sphinx/models/fox.rb +5 -0
  83. data/features/thinking_sphinx/models/gamma.rb +5 -0
  84. data/features/thinking_sphinx/models/genre.rb +3 -0
  85. data/features/thinking_sphinx/models/medium.rb +5 -0
  86. data/features/thinking_sphinx/models/music.rb +8 -0
  87. data/features/thinking_sphinx/models/person.rb +23 -0
  88. data/features/thinking_sphinx/models/post.rb +21 -0
  89. data/features/thinking_sphinx/models/robot.rb +12 -0
  90. data/features/thinking_sphinx/models/tag.rb +3 -0
  91. data/features/thinking_sphinx/models/tagging.rb +4 -0
  92. data/lib/cucumber/thinking_sphinx/external_world.rb +8 -0
  93. data/lib/cucumber/thinking_sphinx/internal_world.rb +127 -0
  94. data/lib/cucumber/thinking_sphinx/sql_logger.rb +20 -0
  95. data/lib/thinking_sphinx.rb +242 -0
  96. data/lib/thinking_sphinx/active_record.rb +380 -0
  97. data/lib/thinking_sphinx/active_record/attribute_updates.rb +50 -0
  98. data/lib/thinking_sphinx/active_record/delta.rb +61 -0
  99. data/lib/thinking_sphinx/active_record/has_many_association.rb +51 -0
  100. data/lib/thinking_sphinx/active_record/scopes.rb +75 -0
  101. data/lib/thinking_sphinx/adapters/abstract_adapter.rb +46 -0
  102. data/lib/thinking_sphinx/adapters/mysql_adapter.rb +58 -0
  103. data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +147 -0
  104. data/lib/thinking_sphinx/association.rb +164 -0
  105. data/lib/thinking_sphinx/attribute.rb +380 -0
  106. data/lib/thinking_sphinx/auto_version.rb +22 -0
  107. data/lib/thinking_sphinx/class_facet.rb +15 -0
  108. data/lib/thinking_sphinx/configuration.rb +292 -0
  109. data/lib/thinking_sphinx/context.rb +74 -0
  110. data/lib/thinking_sphinx/core/array.rb +7 -0
  111. data/lib/thinking_sphinx/core/string.rb +15 -0
  112. data/lib/thinking_sphinx/deltas.rb +28 -0
  113. data/lib/thinking_sphinx/deltas/default_delta.rb +62 -0
  114. data/lib/thinking_sphinx/deploy/capistrano.rb +100 -0
  115. data/lib/thinking_sphinx/excerpter.rb +22 -0
  116. data/lib/thinking_sphinx/facet.rb +125 -0
  117. data/lib/thinking_sphinx/facet_search.rb +136 -0
  118. data/lib/thinking_sphinx/field.rb +80 -0
  119. data/lib/thinking_sphinx/index.rb +157 -0
  120. data/lib/thinking_sphinx/index/builder.rb +302 -0
  121. data/lib/thinking_sphinx/index/faux_column.rb +118 -0
  122. data/lib/thinking_sphinx/join.rb +37 -0
  123. data/lib/thinking_sphinx/property.rb +168 -0
  124. data/lib/thinking_sphinx/rails_additions.rb +150 -0
  125. data/lib/thinking_sphinx/search.rb +785 -0
  126. data/lib/thinking_sphinx/search_methods.rb +439 -0
  127. data/lib/thinking_sphinx/source.rb +159 -0
  128. data/lib/thinking_sphinx/source/internal_properties.rb +46 -0
  129. data/lib/thinking_sphinx/source/sql.rb +147 -0
  130. data/lib/thinking_sphinx/tasks.rb +121 -0
  131. data/lib/thinking_sphinx/test.rb +52 -0
  132. data/rails/init.rb +16 -0
  133. data/spec/thinking_sphinx/active_record/delta_spec.rb +128 -0
  134. data/spec/thinking_sphinx/active_record/has_many_association_spec.rb +71 -0
  135. data/spec/thinking_sphinx/active_record/scopes_spec.rb +177 -0
  136. data/spec/thinking_sphinx/active_record_spec.rb +618 -0
  137. data/spec/thinking_sphinx/association_spec.rb +239 -0
  138. data/spec/thinking_sphinx/attribute_spec.rb +548 -0
  139. data/spec/thinking_sphinx/auto_version_spec.rb +39 -0
  140. data/spec/thinking_sphinx/configuration_spec.rb +271 -0
  141. data/spec/thinking_sphinx/context_spec.rb +126 -0
  142. data/spec/thinking_sphinx/core/array_spec.rb +9 -0
  143. data/spec/thinking_sphinx/core/string_spec.rb +9 -0
  144. data/spec/thinking_sphinx/excerpter_spec.rb +49 -0
  145. data/spec/thinking_sphinx/facet_search_spec.rb +176 -0
  146. data/spec/thinking_sphinx/facet_spec.rb +333 -0
  147. data/spec/thinking_sphinx/field_spec.rb +113 -0
  148. data/spec/thinking_sphinx/index/builder_spec.rb +495 -0
  149. data/spec/thinking_sphinx/index/faux_column_spec.rb +36 -0
  150. data/spec/thinking_sphinx/index_spec.rb +183 -0
  151. data/spec/thinking_sphinx/rails_additions_spec.rb +203 -0
  152. data/spec/thinking_sphinx/search_methods_spec.rb +152 -0
  153. data/spec/thinking_sphinx/search_spec.rb +1206 -0
  154. data/spec/thinking_sphinx/source_spec.rb +243 -0
  155. data/spec/thinking_sphinx_spec.rb +204 -0
  156. data/tasks/distribution.rb +46 -0
  157. data/tasks/rails.rake +1 -0
  158. data/tasks/testing.rb +76 -0
  159. metadata +343 -0
data/tasks/rails.rake ADDED
@@ -0,0 +1 @@
1
+ require File.join(File.dirname(__FILE__), '/../lib/thinking_sphinx/tasks')
data/tasks/testing.rb ADDED
@@ -0,0 +1,76 @@
1
+ require 'rubygems'
2
+ require 'spec/rake/spectask'
3
+ require 'cucumber/rake/task'
4
+
5
+ desc "Run the specs under spec"
6
+ Spec::Rake::SpecTask.new do |t|
7
+ t.spec_files = FileList['spec/**/*_spec.rb']
8
+ t.spec_opts << "-c"
9
+ end
10
+ task :spec => :check_dependencies
11
+
12
+ desc "Run all feature-set configurations"
13
+ task :features do |t|
14
+ databases = ENV['DATABASES'] || 'mysql,postgresql'
15
+ databases.split(',').each do |database|
16
+ puts "rake features:#{database}"
17
+ system "rake features:#{database}"
18
+ end
19
+ end
20
+
21
+ namespace :features do
22
+ def add_task(name, description)
23
+ Cucumber::Rake::Task.new(name, description) do |t|
24
+ t.cucumber_opts = "--format pretty features/*.feature DATABASE=#{name}"
25
+ end
26
+ end
27
+
28
+ add_task :mysql, "Run feature-set against MySQL"
29
+ add_task :postgresql, "Run feature-set against PostgreSQL"
30
+
31
+ task :mysql => :check_dependencies
32
+ task :postgresql => :check_dependencies
33
+ end
34
+
35
+ desc "Generate RCov reports"
36
+ Spec::Rake::SpecTask.new(:rcov) do |t|
37
+ t.libs << 'lib'
38
+ t.spec_files = FileList['spec/**/*_spec.rb']
39
+ t.rcov = true
40
+ t.rcov_opts = [
41
+ '--exclude', 'spec',
42
+ '--exclude', 'gems',
43
+ '--exclude', 'riddle',
44
+ '--exclude', 'ruby'
45
+ ]
46
+ end
47
+
48
+ namespace :rcov do
49
+ def add_task(name, description)
50
+ Cucumber::Rake::Task.new(name, description) do |t|
51
+ t.cucumber_opts = "--format pretty"
52
+ t.profile = name
53
+ t.rcov = true
54
+ t.rcov_opts = [
55
+ '--exclude', 'spec',
56
+ '--exclude', 'gems',
57
+ '--exclude', 'riddle',
58
+ '--exclude', 'features'
59
+ ]
60
+ end
61
+ end
62
+
63
+ add_task :mysql, "Run feature-set against MySQL with rcov"
64
+ add_task :postgresql, "Run feature-set against PostgreSQL with rcov"
65
+ end
66
+
67
+ desc "Build cucumber.yml file"
68
+ task :cucumber_defaults do
69
+ steps = FileList["features/step_definitions/**.rb"].collect { |path|
70
+ "--require #{path}"
71
+ }.join(" ")
72
+
73
+ File.open('cucumber.yml', 'w') { |f|
74
+ f.write "default: \"--require features/support/env.rb #{steps}\"\n"
75
+ }
76
+ end
metadata ADDED
@@ -0,0 +1,343 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thinking-sphinx-allen
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 3
8
+ - 18
9
+ version: 1.3.18
10
+ platform: ruby
11
+ authors:
12
+ - Pat Allan
13
+ - Allen Wei
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-29 00:00:00 +08:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: activerecord
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 15
31
+ - 6
32
+ version: 1.15.6
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: riddle
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ segments:
43
+ - 1
44
+ - 0
45
+ - 10
46
+ version: 1.0.10
47
+ type: :runtime
48
+ version_requirements: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ name: after_commit
51
+ prerelease: false
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ segments:
57
+ - 1
58
+ - 0
59
+ - 6
60
+ version: 1.0.6
61
+ type: :runtime
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: yard
65
+ prerelease: false
66
+ requirement: &id004 !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ segments:
71
+ - 0
72
+ version: "0"
73
+ type: :development
74
+ version_requirements: *id004
75
+ - !ruby/object:Gem::Dependency
76
+ name: rspec
77
+ prerelease: false
78
+ requirement: &id005 !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ segments:
83
+ - 1
84
+ - 2
85
+ - 9
86
+ version: 1.2.9
87
+ type: :development
88
+ version_requirements: *id005
89
+ - !ruby/object:Gem::Dependency
90
+ name: cucumber
91
+ prerelease: false
92
+ requirement: &id006 !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ segments:
97
+ - 0
98
+ version: "0"
99
+ type: :development
100
+ version_requirements: *id006
101
+ - !ruby/object:Gem::Dependency
102
+ name: will_paginate
103
+ prerelease: false
104
+ requirement: &id007 !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "="
107
+ - !ruby/object:Gem::Version
108
+ segments:
109
+ - 2
110
+ - 3
111
+ - 11
112
+ version: 2.3.11
113
+ type: :development
114
+ version_requirements: *id007
115
+ - !ruby/object:Gem::Dependency
116
+ name: ginger
117
+ prerelease: false
118
+ requirement: &id008 !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - "="
121
+ - !ruby/object:Gem::Version
122
+ segments:
123
+ - 1
124
+ - 2
125
+ - 0
126
+ version: 1.2.0
127
+ type: :development
128
+ version_requirements: *id008
129
+ - !ruby/object:Gem::Dependency
130
+ name: faker
131
+ prerelease: false
132
+ requirement: &id009 !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - "="
135
+ - !ruby/object:Gem::Version
136
+ segments:
137
+ - 0
138
+ - 3
139
+ - 1
140
+ version: 0.3.1
141
+ type: :development
142
+ version_requirements: *id009
143
+ description: A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.
144
+ email: pat@freelancing-gods.com digruby@gmail.com
145
+ executables: []
146
+
147
+ extensions: []
148
+
149
+ extra_rdoc_files:
150
+ - README.textile
151
+ files:
152
+ - LICENCE
153
+ - README.textile
154
+ - VERSION
155
+ - lib/cucumber/thinking_sphinx/external_world.rb
156
+ - lib/cucumber/thinking_sphinx/internal_world.rb
157
+ - lib/cucumber/thinking_sphinx/sql_logger.rb
158
+ - lib/thinking_sphinx.rb
159
+ - lib/thinking_sphinx/active_record.rb
160
+ - lib/thinking_sphinx/active_record/attribute_updates.rb
161
+ - lib/thinking_sphinx/active_record/delta.rb
162
+ - lib/thinking_sphinx/active_record/has_many_association.rb
163
+ - lib/thinking_sphinx/active_record/scopes.rb
164
+ - lib/thinking_sphinx/adapters/abstract_adapter.rb
165
+ - lib/thinking_sphinx/adapters/mysql_adapter.rb
166
+ - lib/thinking_sphinx/adapters/postgresql_adapter.rb
167
+ - lib/thinking_sphinx/association.rb
168
+ - lib/thinking_sphinx/attribute.rb
169
+ - lib/thinking_sphinx/auto_version.rb
170
+ - lib/thinking_sphinx/class_facet.rb
171
+ - lib/thinking_sphinx/configuration.rb
172
+ - lib/thinking_sphinx/context.rb
173
+ - lib/thinking_sphinx/core/array.rb
174
+ - lib/thinking_sphinx/core/string.rb
175
+ - lib/thinking_sphinx/deltas.rb
176
+ - lib/thinking_sphinx/deltas/default_delta.rb
177
+ - lib/thinking_sphinx/deploy/capistrano.rb
178
+ - lib/thinking_sphinx/excerpter.rb
179
+ - lib/thinking_sphinx/facet.rb
180
+ - lib/thinking_sphinx/facet_search.rb
181
+ - lib/thinking_sphinx/field.rb
182
+ - lib/thinking_sphinx/index.rb
183
+ - lib/thinking_sphinx/index/builder.rb
184
+ - lib/thinking_sphinx/index/faux_column.rb
185
+ - lib/thinking_sphinx/join.rb
186
+ - lib/thinking_sphinx/property.rb
187
+ - lib/thinking_sphinx/rails_additions.rb
188
+ - lib/thinking_sphinx/search.rb
189
+ - lib/thinking_sphinx/search_methods.rb
190
+ - lib/thinking_sphinx/source.rb
191
+ - lib/thinking_sphinx/source/internal_properties.rb
192
+ - lib/thinking_sphinx/source/sql.rb
193
+ - lib/thinking_sphinx/tasks.rb
194
+ - lib/thinking_sphinx/test.rb
195
+ - rails/init.rb
196
+ - tasks/distribution.rb
197
+ - tasks/rails.rake
198
+ - tasks/testing.rb
199
+ has_rdoc: true
200
+ homepage: http://ts.freelancing-gods.com
201
+ licenses: []
202
+
203
+ post_install_message: |+
204
+ If you're upgrading, you should read this:
205
+ http://freelancing-god.github.com/ts/en/upgrading.html
206
+
207
+ rdoc_options:
208
+ - --charset=UTF-8
209
+ require_paths:
210
+ - lib
211
+ required_ruby_version: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ segments:
216
+ - 0
217
+ version: "0"
218
+ required_rubygems_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ segments:
223
+ - 0
224
+ version: "0"
225
+ requirements: []
226
+
227
+ rubyforge_project:
228
+ rubygems_version: 1.3.6
229
+ signing_key:
230
+ specification_version: 3
231
+ summary: ActiveRecord/Rails Sphinx library
232
+ test_files:
233
+ - features/abstract_inheritance.feature
234
+ - features/alternate_primary_key.feature
235
+ - features/attribute_transformation.feature
236
+ - features/attribute_updates.feature
237
+ - features/deleting_instances.feature
238
+ - features/direct_attributes.feature
239
+ - features/excerpts.feature
240
+ - features/extensible_delta_indexing.feature
241
+ - features/facets.feature
242
+ - features/facets_across_model.feature
243
+ - features/handling_edits.feature
244
+ - features/retry_stale_indexes.feature
245
+ - features/searching_across_models.feature
246
+ - features/searching_by_index.feature
247
+ - features/searching_by_model.feature
248
+ - features/searching_with_find_arguments.feature
249
+ - features/sphinx_detection.feature
250
+ - features/sphinx_scopes.feature
251
+ - features/step_definitions/alpha_steps.rb
252
+ - features/step_definitions/beta_steps.rb
253
+ - features/step_definitions/common_steps.rb
254
+ - features/step_definitions/extensible_delta_indexing_steps.rb
255
+ - features/step_definitions/facet_steps.rb
256
+ - features/step_definitions/find_arguments_steps.rb
257
+ - features/step_definitions/gamma_steps.rb
258
+ - features/step_definitions/scope_steps.rb
259
+ - features/step_definitions/search_steps.rb
260
+ - features/step_definitions/sphinx_steps.rb
261
+ - features/sti_searching.feature
262
+ - features/support/env.rb
263
+ - features/support/lib/generic_delta_handler.rb
264
+ - features/thinking_sphinx/database.example.yml
265
+ - features/thinking_sphinx/db/fixtures/alphas.rb
266
+ - features/thinking_sphinx/db/fixtures/authors.rb
267
+ - features/thinking_sphinx/db/fixtures/betas.rb
268
+ - features/thinking_sphinx/db/fixtures/boxes.rb
269
+ - features/thinking_sphinx/db/fixtures/categories.rb
270
+ - features/thinking_sphinx/db/fixtures/cats.rb
271
+ - features/thinking_sphinx/db/fixtures/comments.rb
272
+ - features/thinking_sphinx/db/fixtures/developers.rb
273
+ - features/thinking_sphinx/db/fixtures/dogs.rb
274
+ - features/thinking_sphinx/db/fixtures/extensible_betas.rb
275
+ - features/thinking_sphinx/db/fixtures/foxes.rb
276
+ - features/thinking_sphinx/db/fixtures/gammas.rb
277
+ - features/thinking_sphinx/db/fixtures/music.rb
278
+ - features/thinking_sphinx/db/fixtures/people.rb
279
+ - features/thinking_sphinx/db/fixtures/posts.rb
280
+ - features/thinking_sphinx/db/fixtures/robots.rb
281
+ - features/thinking_sphinx/db/fixtures/tags.rb
282
+ - features/thinking_sphinx/db/migrations/create_alphas.rb
283
+ - features/thinking_sphinx/db/migrations/create_animals.rb
284
+ - features/thinking_sphinx/db/migrations/create_authors.rb
285
+ - features/thinking_sphinx/db/migrations/create_authors_posts.rb
286
+ - features/thinking_sphinx/db/migrations/create_betas.rb
287
+ - features/thinking_sphinx/db/migrations/create_boxes.rb
288
+ - features/thinking_sphinx/db/migrations/create_categories.rb
289
+ - features/thinking_sphinx/db/migrations/create_comments.rb
290
+ - features/thinking_sphinx/db/migrations/create_developers.rb
291
+ - features/thinking_sphinx/db/migrations/create_extensible_betas.rb
292
+ - features/thinking_sphinx/db/migrations/create_gammas.rb
293
+ - features/thinking_sphinx/db/migrations/create_genres.rb
294
+ - features/thinking_sphinx/db/migrations/create_music.rb
295
+ - features/thinking_sphinx/db/migrations/create_people.rb
296
+ - features/thinking_sphinx/db/migrations/create_posts.rb
297
+ - features/thinking_sphinx/db/migrations/create_robots.rb
298
+ - features/thinking_sphinx/db/migrations/create_taggings.rb
299
+ - features/thinking_sphinx/db/migrations/create_tags.rb
300
+ - features/thinking_sphinx/models/alpha.rb
301
+ - features/thinking_sphinx/models/animal.rb
302
+ - features/thinking_sphinx/models/author.rb
303
+ - features/thinking_sphinx/models/beta.rb
304
+ - features/thinking_sphinx/models/box.rb
305
+ - features/thinking_sphinx/models/cat.rb
306
+ - features/thinking_sphinx/models/category.rb
307
+ - features/thinking_sphinx/models/comment.rb
308
+ - features/thinking_sphinx/models/developer.rb
309
+ - features/thinking_sphinx/models/dog.rb
310
+ - features/thinking_sphinx/models/extensible_beta.rb
311
+ - features/thinking_sphinx/models/fox.rb
312
+ - features/thinking_sphinx/models/gamma.rb
313
+ - features/thinking_sphinx/models/genre.rb
314
+ - features/thinking_sphinx/models/medium.rb
315
+ - features/thinking_sphinx/models/music.rb
316
+ - features/thinking_sphinx/models/person.rb
317
+ - features/thinking_sphinx/models/post.rb
318
+ - features/thinking_sphinx/models/robot.rb
319
+ - features/thinking_sphinx/models/tag.rb
320
+ - features/thinking_sphinx/models/tagging.rb
321
+ - spec/thinking_sphinx/active_record/delta_spec.rb
322
+ - spec/thinking_sphinx/active_record/has_many_association_spec.rb
323
+ - spec/thinking_sphinx/active_record/scopes_spec.rb
324
+ - spec/thinking_sphinx/active_record_spec.rb
325
+ - spec/thinking_sphinx/association_spec.rb
326
+ - spec/thinking_sphinx/attribute_spec.rb
327
+ - spec/thinking_sphinx/auto_version_spec.rb
328
+ - spec/thinking_sphinx/configuration_spec.rb
329
+ - spec/thinking_sphinx/context_spec.rb
330
+ - spec/thinking_sphinx/core/array_spec.rb
331
+ - spec/thinking_sphinx/core/string_spec.rb
332
+ - spec/thinking_sphinx/excerpter_spec.rb
333
+ - spec/thinking_sphinx/facet_search_spec.rb
334
+ - spec/thinking_sphinx/facet_spec.rb
335
+ - spec/thinking_sphinx/field_spec.rb
336
+ - spec/thinking_sphinx/index/builder_spec.rb
337
+ - spec/thinking_sphinx/index/faux_column_spec.rb
338
+ - spec/thinking_sphinx/index_spec.rb
339
+ - spec/thinking_sphinx/rails_additions_spec.rb
340
+ - spec/thinking_sphinx/search_methods_spec.rb
341
+ - spec/thinking_sphinx/search_spec.rb
342
+ - spec/thinking_sphinx/source_spec.rb
343
+ - spec/thinking_sphinx_spec.rb