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