thinking-sphinx 3.3.0 → 3.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +29 -20
- data/Appraisals +9 -5
- data/Gemfile +8 -3
- data/HISTORY +24 -0
- data/README.textile +5 -4
- data/bin/console +14 -0
- data/bin/literals +9 -0
- data/bin/loadsphinx +38 -0
- data/lib/thinking_sphinx.rb +15 -2
- data/lib/thinking_sphinx/active_record/callbacks/delta_callbacks.rb +2 -3
- data/lib/thinking_sphinx/active_record/callbacks/update_callbacks.rb +11 -1
- data/lib/thinking_sphinx/active_record/index.rb +1 -1
- data/lib/thinking_sphinx/active_record/join_association.rb +3 -1
- data/lib/thinking_sphinx/active_record/log_subscriber.rb +5 -0
- data/lib/thinking_sphinx/active_record/sql_source.rb +1 -1
- data/lib/thinking_sphinx/attribute_types.rb +70 -0
- data/lib/thinking_sphinx/commands/base.rb +41 -0
- data/lib/thinking_sphinx/commands/configure.rb +13 -0
- data/lib/thinking_sphinx/commands/index.rb +11 -0
- data/lib/thinking_sphinx/commands/start_attached.rb +20 -0
- data/lib/thinking_sphinx/commands/start_detached.rb +19 -0
- data/lib/thinking_sphinx/commands/stop.rb +22 -0
- data/lib/thinking_sphinx/configuration.rb +36 -28
- data/lib/thinking_sphinx/configuration/minimum_fields.rb +11 -8
- data/lib/thinking_sphinx/connection.rb +5 -122
- data/lib/thinking_sphinx/connection/client.rb +48 -0
- data/lib/thinking_sphinx/connection/jruby.rb +53 -0
- data/lib/thinking_sphinx/connection/mri.rb +28 -0
- data/lib/thinking_sphinx/core/index.rb +11 -0
- data/lib/thinking_sphinx/deletion.rb +6 -2
- data/lib/thinking_sphinx/deltas/default_delta.rb +1 -1
- data/lib/thinking_sphinx/deltas/delete_job.rb +14 -4
- data/lib/thinking_sphinx/distributed/index.rb +10 -0
- data/lib/thinking_sphinx/errors.rb +1 -1
- data/lib/thinking_sphinx/index_set.rb +14 -2
- data/lib/thinking_sphinx/interfaces/daemon.rb +32 -0
- data/lib/thinking_sphinx/interfaces/real_time.rb +41 -0
- data/lib/thinking_sphinx/interfaces/sql.rb +41 -0
- data/lib/thinking_sphinx/middlewares.rb +5 -3
- data/lib/thinking_sphinx/middlewares/active_record_translator.rb +13 -6
- data/lib/thinking_sphinx/middlewares/attribute_typer.rb +48 -0
- data/lib/thinking_sphinx/middlewares/valid_options.rb +23 -0
- data/lib/thinking_sphinx/rake_interface.rb +10 -124
- data/lib/thinking_sphinx/search.rb +11 -0
- data/lib/thinking_sphinx/search/query.rb +7 -1
- data/lib/thinking_sphinx/tasks.rb +80 -21
- data/lib/thinking_sphinx/with_output.rb +11 -0
- data/spec/acceptance/connection_spec.rb +4 -4
- data/spec/acceptance/searching_within_a_model_spec.rb +7 -0
- data/spec/acceptance/specifying_sql_spec.rb +26 -8
- data/spec/acceptance/sql_deltas_spec.rb +12 -0
- data/spec/internal/app/indices/album_index.rb +3 -0
- data/spec/internal/app/models/album.rb +19 -0
- data/spec/internal/db/schema.rb +8 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/support/json_column.rb +5 -1
- data/spec/thinking_sphinx/active_record/callbacks/update_callbacks_spec.rb +5 -1
- data/spec/thinking_sphinx/active_record/sql_source_spec.rb +6 -0
- data/spec/thinking_sphinx/attribute_types_spec.rb +50 -0
- data/spec/thinking_sphinx/commands/configure_spec.rb +29 -0
- data/spec/thinking_sphinx/commands/index_spec.rb +26 -0
- data/spec/thinking_sphinx/commands/start_detached_spec.rb +55 -0
- data/spec/thinking_sphinx/commands/stop_spec.rb +54 -0
- data/spec/thinking_sphinx/configuration/minimum_fields_spec.rb +36 -0
- data/spec/thinking_sphinx/deletion_spec.rb +2 -5
- data/spec/thinking_sphinx/deltas/default_delta_spec.rb +1 -1
- data/spec/thinking_sphinx/errors_spec.rb +7 -0
- data/spec/thinking_sphinx/index_set_spec.rb +30 -7
- data/spec/thinking_sphinx/interfaces/daemon_spec.rb +52 -0
- data/spec/thinking_sphinx/interfaces/real_time_spec.rb +109 -0
- data/spec/thinking_sphinx/interfaces/sql_spec.rb +98 -0
- data/spec/thinking_sphinx/middlewares/attribute_typer_spec.rb +42 -0
- data/spec/thinking_sphinx/middlewares/valid_options_spec.rb +49 -0
- data/spec/thinking_sphinx/rake_interface_spec.rb +13 -246
- data/spec/thinking_sphinx/search/query_spec.rb +7 -0
- data/thinking-sphinx.gemspec +5 -4
- metadata +72 -16
- data/gemfiles/.gitignore +0 -1
- data/gemfiles/rails_3_2.gemfile +0 -13
- data/gemfiles/rails_4_0.gemfile +0 -13
- data/gemfiles/rails_4_1.gemfile +0 -13
- data/gemfiles/rails_4_2.gemfile +0 -13
- data/gemfiles/rails_5_0.gemfile +0 -12
@@ -74,5 +74,12 @@ describe ThinkingSphinx::Search::Query do
|
|
74
74
|
|
75
75
|
expect(query.to_s).to eq('tasty @title pancakes')
|
76
76
|
end
|
77
|
+
|
78
|
+
it "handles multiple fields for a single condition" do
|
79
|
+
query = ThinkingSphinx::Search::Query.new '',
|
80
|
+
[:title, :content] => 'pancakes'
|
81
|
+
|
82
|
+
expect(query.to_s).to eq('@(title,content) pancakes')
|
83
|
+
end
|
77
84
|
end
|
78
85
|
end
|
data/thinking-sphinx.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'thinking-sphinx'
|
6
|
-
s.version = '3.
|
6
|
+
s.version = '3.4.0'
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Pat Allan"]
|
9
9
|
s.email = ["pat@freelancing-gods.com"]
|
@@ -29,7 +29,8 @@ Gem::Specification.new do |s|
|
|
29
29
|
s.add_runtime_dependency 'riddle', '>= 2.0.0'
|
30
30
|
|
31
31
|
s.add_development_dependency 'appraisal', '~> 1.0.2'
|
32
|
-
s.add_development_dependency 'combustion', '~> 0.
|
33
|
-
s.add_development_dependency 'database_cleaner', '~> 1.
|
34
|
-
s.add_development_dependency 'rspec', '~> 3.
|
32
|
+
s.add_development_dependency 'combustion', '~> 0.7.0'
|
33
|
+
s.add_development_dependency 'database_cleaner', '~> 1.6.0'
|
34
|
+
s.add_development_dependency 'rspec', '~> 3.6.0'
|
35
|
+
s.add_development_dependency 'rspec-retry', '~> 0.5.4'
|
35
36
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thinking-sphinx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pat Allan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -114,47 +114,64 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.
|
117
|
+
version: 0.7.0
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.
|
124
|
+
version: 0.7.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: database_cleaner
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1.
|
131
|
+
version: 1.6.0
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 1.
|
138
|
+
version: 1.6.0
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: rspec
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
143
|
- - "~>"
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 3.
|
145
|
+
version: 3.6.0
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 3.
|
152
|
+
version: 3.6.0
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rspec-retry
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 0.5.4
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 0.5.4
|
153
167
|
description: An intelligent layer for ActiveRecord (via Rails and Sinatra) for the
|
154
168
|
Sphinx full-text search tool.
|
155
169
|
email:
|
156
170
|
- pat@freelancing-gods.com
|
157
|
-
executables:
|
171
|
+
executables:
|
172
|
+
- console
|
173
|
+
- literals
|
174
|
+
- loadsphinx
|
158
175
|
extensions: []
|
159
176
|
extra_rdoc_files: []
|
160
177
|
files:
|
@@ -166,12 +183,9 @@ files:
|
|
166
183
|
- LICENCE
|
167
184
|
- README.textile
|
168
185
|
- Rakefile
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
- gemfiles/rails_4_1.gemfile
|
173
|
-
- gemfiles/rails_4_2.gemfile
|
174
|
-
- gemfiles/rails_5_0.gemfile
|
186
|
+
- bin/console
|
187
|
+
- bin/literals
|
188
|
+
- bin/loadsphinx
|
175
189
|
- lib/thinking-sphinx.rb
|
176
190
|
- lib/thinking/sphinx.rb
|
177
191
|
- lib/thinking_sphinx.rb
|
@@ -212,11 +226,18 @@ files:
|
|
212
226
|
- lib/thinking_sphinx/active_record/sql_builder/statement.rb
|
213
227
|
- lib/thinking_sphinx/active_record/sql_source.rb
|
214
228
|
- lib/thinking_sphinx/active_record/sql_source/template.rb
|
229
|
+
- lib/thinking_sphinx/attribute_types.rb
|
215
230
|
- lib/thinking_sphinx/batched_search.rb
|
216
231
|
- lib/thinking_sphinx/callbacks.rb
|
217
232
|
- lib/thinking_sphinx/capistrano.rb
|
218
233
|
- lib/thinking_sphinx/capistrano/v2.rb
|
219
234
|
- lib/thinking_sphinx/capistrano/v3.rb
|
235
|
+
- lib/thinking_sphinx/commands/base.rb
|
236
|
+
- lib/thinking_sphinx/commands/configure.rb
|
237
|
+
- lib/thinking_sphinx/commands/index.rb
|
238
|
+
- lib/thinking_sphinx/commands/start_attached.rb
|
239
|
+
- lib/thinking_sphinx/commands/start_detached.rb
|
240
|
+
- lib/thinking_sphinx/commands/stop.rb
|
220
241
|
- lib/thinking_sphinx/configuration.rb
|
221
242
|
- lib/thinking_sphinx/configuration/consistent_ids.rb
|
222
243
|
- lib/thinking_sphinx/configuration/defaults.rb
|
@@ -224,6 +245,9 @@ files:
|
|
224
245
|
- lib/thinking_sphinx/configuration/duplicate_names.rb
|
225
246
|
- lib/thinking_sphinx/configuration/minimum_fields.rb
|
226
247
|
- lib/thinking_sphinx/connection.rb
|
248
|
+
- lib/thinking_sphinx/connection/client.rb
|
249
|
+
- lib/thinking_sphinx/connection/jruby.rb
|
250
|
+
- lib/thinking_sphinx/connection/mri.rb
|
227
251
|
- lib/thinking_sphinx/controller.rb
|
228
252
|
- lib/thinking_sphinx/core.rb
|
229
253
|
- lib/thinking_sphinx/core/field.rb
|
@@ -253,6 +277,9 @@ files:
|
|
253
277
|
- lib/thinking_sphinx/index_set.rb
|
254
278
|
- lib/thinking_sphinx/indexing_strategies/all_at_once.rb
|
255
279
|
- lib/thinking_sphinx/indexing_strategies/one_at_a_time.rb
|
280
|
+
- lib/thinking_sphinx/interfaces/daemon.rb
|
281
|
+
- lib/thinking_sphinx/interfaces/real_time.rb
|
282
|
+
- lib/thinking_sphinx/interfaces/sql.rb
|
256
283
|
- lib/thinking_sphinx/logger.rb
|
257
284
|
- lib/thinking_sphinx/masks.rb
|
258
285
|
- lib/thinking_sphinx/masks/group_enumerators_mask.rb
|
@@ -261,6 +288,7 @@ files:
|
|
261
288
|
- lib/thinking_sphinx/masks/weight_enumerator_mask.rb
|
262
289
|
- lib/thinking_sphinx/middlewares.rb
|
263
290
|
- lib/thinking_sphinx/middlewares/active_record_translator.rb
|
291
|
+
- lib/thinking_sphinx/middlewares/attribute_typer.rb
|
264
292
|
- lib/thinking_sphinx/middlewares/geographer.rb
|
265
293
|
- lib/thinking_sphinx/middlewares/glazier.rb
|
266
294
|
- lib/thinking_sphinx/middlewares/ids_only.rb
|
@@ -270,6 +298,7 @@ files:
|
|
270
298
|
- lib/thinking_sphinx/middlewares/stale_id_checker.rb
|
271
299
|
- lib/thinking_sphinx/middlewares/stale_id_filter.rb
|
272
300
|
- lib/thinking_sphinx/middlewares/utf8.rb
|
301
|
+
- lib/thinking_sphinx/middlewares/valid_options.rb
|
273
302
|
- lib/thinking_sphinx/panes.rb
|
274
303
|
- lib/thinking_sphinx/panes/attributes_pane.rb
|
275
304
|
- lib/thinking_sphinx/panes/distance_pane.rb
|
@@ -304,6 +333,7 @@ files:
|
|
304
333
|
- lib/thinking_sphinx/test.rb
|
305
334
|
- lib/thinking_sphinx/utf8.rb
|
306
335
|
- lib/thinking_sphinx/wildcard.rb
|
336
|
+
- lib/thinking_sphinx/with_output.rb
|
307
337
|
- spec/acceptance/association_scoping_spec.rb
|
308
338
|
- spec/acceptance/attribute_access_spec.rb
|
309
339
|
- spec/acceptance/attribute_updates_spec.rb
|
@@ -338,6 +368,7 @@ files:
|
|
338
368
|
- spec/acceptance/suspended_deltas_spec.rb
|
339
369
|
- spec/fixtures/database.yml
|
340
370
|
- spec/internal/app/indices/admin_person_index.rb
|
371
|
+
- spec/internal/app/indices/album_index.rb
|
341
372
|
- spec/internal/app/indices/animal_index.rb
|
342
373
|
- spec/internal/app/indices/article_index.rb
|
343
374
|
- spec/internal/app/indices/bird_index.rb
|
@@ -348,6 +379,7 @@ files:
|
|
348
379
|
- spec/internal/app/indices/tee_index.rb
|
349
380
|
- spec/internal/app/indices/user_index.rb
|
350
381
|
- spec/internal/app/models/admin/person.rb
|
382
|
+
- spec/internal/app/models/album.rb
|
351
383
|
- spec/internal/app/models/animal.rb
|
352
384
|
- spec/internal/app/models/article.rb
|
353
385
|
- spec/internal/app/models/bird.rb
|
@@ -396,6 +428,12 @@ files:
|
|
396
428
|
- spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb
|
397
429
|
- spec/thinking_sphinx/active_record/sql_builder_spec.rb
|
398
430
|
- spec/thinking_sphinx/active_record/sql_source_spec.rb
|
431
|
+
- spec/thinking_sphinx/attribute_types_spec.rb
|
432
|
+
- spec/thinking_sphinx/commands/configure_spec.rb
|
433
|
+
- spec/thinking_sphinx/commands/index_spec.rb
|
434
|
+
- spec/thinking_sphinx/commands/start_detached_spec.rb
|
435
|
+
- spec/thinking_sphinx/commands/stop_spec.rb
|
436
|
+
- spec/thinking_sphinx/configuration/minimum_fields_spec.rb
|
399
437
|
- spec/thinking_sphinx/configuration_spec.rb
|
400
438
|
- spec/thinking_sphinx/connection_spec.rb
|
401
439
|
- spec/thinking_sphinx/deletion_spec.rb
|
@@ -406,15 +444,20 @@ files:
|
|
406
444
|
- spec/thinking_sphinx/facet_search_spec.rb
|
407
445
|
- spec/thinking_sphinx/index_set_spec.rb
|
408
446
|
- spec/thinking_sphinx/index_spec.rb
|
447
|
+
- spec/thinking_sphinx/interfaces/daemon_spec.rb
|
448
|
+
- spec/thinking_sphinx/interfaces/real_time_spec.rb
|
449
|
+
- spec/thinking_sphinx/interfaces/sql_spec.rb
|
409
450
|
- spec/thinking_sphinx/masks/pagination_mask_spec.rb
|
410
451
|
- spec/thinking_sphinx/masks/scopes_mask_spec.rb
|
411
452
|
- spec/thinking_sphinx/middlewares/active_record_translator_spec.rb
|
453
|
+
- spec/thinking_sphinx/middlewares/attribute_typer_spec.rb
|
412
454
|
- spec/thinking_sphinx/middlewares/geographer_spec.rb
|
413
455
|
- spec/thinking_sphinx/middlewares/glazier_spec.rb
|
414
456
|
- spec/thinking_sphinx/middlewares/inquirer_spec.rb
|
415
457
|
- spec/thinking_sphinx/middlewares/sphinxql_spec.rb
|
416
458
|
- spec/thinking_sphinx/middlewares/stale_id_checker_spec.rb
|
417
459
|
- spec/thinking_sphinx/middlewares/stale_id_filter_spec.rb
|
460
|
+
- spec/thinking_sphinx/middlewares/valid_options_spec.rb
|
418
461
|
- spec/thinking_sphinx/panes/attributes_pane_spec.rb
|
419
462
|
- spec/thinking_sphinx/panes/distance_pane_spec.rb
|
420
463
|
- spec/thinking_sphinx/panes/excerpts_pane_spec.rb
|
@@ -452,7 +495,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
452
495
|
version: '0'
|
453
496
|
requirements: []
|
454
497
|
rubyforge_project: thinking-sphinx
|
455
|
-
rubygems_version: 2.
|
498
|
+
rubygems_version: 2.6.11
|
456
499
|
signing_key:
|
457
500
|
specification_version: 4
|
458
501
|
summary: A smart wrapper over Sphinx for ActiveRecord
|
@@ -491,6 +534,7 @@ test_files:
|
|
491
534
|
- spec/acceptance/suspended_deltas_spec.rb
|
492
535
|
- spec/fixtures/database.yml
|
493
536
|
- spec/internal/app/indices/admin_person_index.rb
|
537
|
+
- spec/internal/app/indices/album_index.rb
|
494
538
|
- spec/internal/app/indices/animal_index.rb
|
495
539
|
- spec/internal/app/indices/article_index.rb
|
496
540
|
- spec/internal/app/indices/bird_index.rb
|
@@ -501,6 +545,7 @@ test_files:
|
|
501
545
|
- spec/internal/app/indices/tee_index.rb
|
502
546
|
- spec/internal/app/indices/user_index.rb
|
503
547
|
- spec/internal/app/models/admin/person.rb
|
548
|
+
- spec/internal/app/models/album.rb
|
504
549
|
- spec/internal/app/models/animal.rb
|
505
550
|
- spec/internal/app/models/article.rb
|
506
551
|
- spec/internal/app/models/bird.rb
|
@@ -549,6 +594,12 @@ test_files:
|
|
549
594
|
- spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb
|
550
595
|
- spec/thinking_sphinx/active_record/sql_builder_spec.rb
|
551
596
|
- spec/thinking_sphinx/active_record/sql_source_spec.rb
|
597
|
+
- spec/thinking_sphinx/attribute_types_spec.rb
|
598
|
+
- spec/thinking_sphinx/commands/configure_spec.rb
|
599
|
+
- spec/thinking_sphinx/commands/index_spec.rb
|
600
|
+
- spec/thinking_sphinx/commands/start_detached_spec.rb
|
601
|
+
- spec/thinking_sphinx/commands/stop_spec.rb
|
602
|
+
- spec/thinking_sphinx/configuration/minimum_fields_spec.rb
|
552
603
|
- spec/thinking_sphinx/configuration_spec.rb
|
553
604
|
- spec/thinking_sphinx/connection_spec.rb
|
554
605
|
- spec/thinking_sphinx/deletion_spec.rb
|
@@ -559,15 +610,20 @@ test_files:
|
|
559
610
|
- spec/thinking_sphinx/facet_search_spec.rb
|
560
611
|
- spec/thinking_sphinx/index_set_spec.rb
|
561
612
|
- spec/thinking_sphinx/index_spec.rb
|
613
|
+
- spec/thinking_sphinx/interfaces/daemon_spec.rb
|
614
|
+
- spec/thinking_sphinx/interfaces/real_time_spec.rb
|
615
|
+
- spec/thinking_sphinx/interfaces/sql_spec.rb
|
562
616
|
- spec/thinking_sphinx/masks/pagination_mask_spec.rb
|
563
617
|
- spec/thinking_sphinx/masks/scopes_mask_spec.rb
|
564
618
|
- spec/thinking_sphinx/middlewares/active_record_translator_spec.rb
|
619
|
+
- spec/thinking_sphinx/middlewares/attribute_typer_spec.rb
|
565
620
|
- spec/thinking_sphinx/middlewares/geographer_spec.rb
|
566
621
|
- spec/thinking_sphinx/middlewares/glazier_spec.rb
|
567
622
|
- spec/thinking_sphinx/middlewares/inquirer_spec.rb
|
568
623
|
- spec/thinking_sphinx/middlewares/sphinxql_spec.rb
|
569
624
|
- spec/thinking_sphinx/middlewares/stale_id_checker_spec.rb
|
570
625
|
- spec/thinking_sphinx/middlewares/stale_id_filter_spec.rb
|
626
|
+
- spec/thinking_sphinx/middlewares/valid_options_spec.rb
|
571
627
|
- spec/thinking_sphinx/panes/attributes_pane_spec.rb
|
572
628
|
- spec/thinking_sphinx/panes/distance_pane_spec.rb
|
573
629
|
- spec/thinking_sphinx/panes/excerpts_pane_spec.rb
|
data/gemfiles/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
*.gemfile.lock
|
data/gemfiles/rails_3_2.gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "mysql2", "~> 0.3.12b4", :platform => :ruby
|
6
|
-
gem "pg", "~> 0.18.4", :platform => :ruby
|
7
|
-
gem "jdbc-mysql", "5.1.35", :platform => :jruby
|
8
|
-
gem "activerecord-jdbcmysql-adapter", "~> 1.3.4", :platform => :jruby
|
9
|
-
gem "activerecord-jdbcpostgresql-adapter", "~> 1.3.4", :platform => :jruby
|
10
|
-
gem "rails", "~> 3.2.22.2"
|
11
|
-
gem "rack", "~> 1.0", :platforms => [:ruby_20, :ruby_21]
|
12
|
-
|
13
|
-
gemspec :path => "../"
|
data/gemfiles/rails_4_0.gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "mysql2", "~> 0.3.12b4", :platform => :ruby
|
6
|
-
gem "pg", "~> 0.18.4", :platform => :ruby
|
7
|
-
gem "jdbc-mysql", "5.1.35", :platform => :jruby
|
8
|
-
gem "activerecord-jdbcmysql-adapter", "~> 1.3.4", :platform => :jruby
|
9
|
-
gem "activerecord-jdbcpostgresql-adapter", "~> 1.3.4", :platform => :jruby
|
10
|
-
gem "rails", "~> 4.0.13"
|
11
|
-
gem "rack", "~> 1.0", :platforms => [:ruby_20, :ruby_21]
|
12
|
-
|
13
|
-
gemspec :path => "../"
|
data/gemfiles/rails_4_1.gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "mysql2", "~> 0.3.12b4", :platform => :ruby
|
6
|
-
gem "pg", "~> 0.18.4", :platform => :ruby
|
7
|
-
gem "jdbc-mysql", "5.1.35", :platform => :jruby
|
8
|
-
gem "activerecord-jdbcmysql-adapter", "~> 1.3.4", :platform => :jruby
|
9
|
-
gem "activerecord-jdbcpostgresql-adapter", "~> 1.3.4", :platform => :jruby
|
10
|
-
gem "rails", "~> 4.1.15"
|
11
|
-
gem "rack", "~> 1.0", :platforms => [:ruby_20, :ruby_21]
|
12
|
-
|
13
|
-
gemspec :path => "../"
|
data/gemfiles/rails_4_2.gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "mysql2", "~> 0.3.12b4", :platform => :ruby
|
6
|
-
gem "pg", "~> 0.18.4", :platform => :ruby
|
7
|
-
gem "jdbc-mysql", "5.1.35", :platform => :jruby
|
8
|
-
gem "activerecord-jdbcmysql-adapter", "~> 1.3.4", :platform => :jruby
|
9
|
-
gem "activerecord-jdbcpostgresql-adapter", "~> 1.3.4", :platform => :jruby
|
10
|
-
gem "rails", "~> 4.2.6"
|
11
|
-
gem "rack", "~> 1.0", :platforms => [:ruby_20, :ruby_21]
|
12
|
-
|
13
|
-
gemspec :path => "../"
|
data/gemfiles/rails_5_0.gemfile
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "mysql2", "~> 0.3.12b4", :platform => :ruby
|
6
|
-
gem "pg", "~> 0.18.4", :platform => :ruby
|
7
|
-
gem "jdbc-mysql", "5.1.35", :platform => :jruby
|
8
|
-
gem "activerecord-jdbcmysql-adapter", "~> 1.3.4", :platform => :jruby
|
9
|
-
gem "activerecord-jdbcpostgresql-adapter", "~> 1.3.4", :platform => :jruby
|
10
|
-
gem "rails", "~> 5.0.0"
|
11
|
-
|
12
|
-
gemspec :path => "../"
|