thorsson_thinking-sphinx 1.3.18

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