thinking-sphinx 5.6.0 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +33 -87
- data/Appraisals +18 -0
- data/CHANGELOG.markdown +11 -0
- data/Gemfile +1 -0
- data/README.textile +24 -9
- data/bin/testmatrix +48 -0
- data/lib/thinking_sphinx/active_record/filter_reflection.rb +1 -1
- data/spec/spec_helper.rb +1 -0
- data/thinking-sphinx.gemspec +12 -6
- metadata +19 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5cba08942e61d8ca739c20ac29a9ee471b229c200c4b78a2047ddf82e4dca686
|
|
4
|
+
data.tar.gz: d933fa8e4d057d7bab8609fce6430a80d79dca0c2ba0ea03b06060b9fc27ddb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 280fea099e92acd152f776562879739712b739d8c73f620d923f215c6d83d3472fb7d029569274562881a8e1eafa1ce122ac44ddae709bd02be9b55502d90c87
|
|
7
|
+
data.tar.gz: 073533d77fd5073e17c6fc48a1463d7eeaa491071ab0fd54414ae152894e3eeff3601f9dea07234e8a0bc2570286b4c2a26dd6ae08572436250af5ce2acf1320
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -1,102 +1,48 @@
|
|
|
1
1
|
name: test
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
- develop
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- main
|
|
11
|
+
- develop
|
|
4
12
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
13
|
+
concurrency:
|
|
14
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
15
|
+
cancel-in-progress: true
|
|
8
16
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
|
|
13
|
-
rails: [ '5_0', '5_1', '5_2', '6_0', '6_1', '7_0', '7_1' ]
|
|
14
|
-
database: [ 'mysql2', 'postgresql' ]
|
|
15
|
-
sphinx_version: [ '2.2.11', '3.4.1' ]
|
|
16
|
-
sphinx_engine: [ 'sphinx' ]
|
|
17
|
-
exclude:
|
|
18
|
-
- database: 'postgresql'
|
|
19
|
-
sphinx_version: '3.4.1'
|
|
20
|
-
sphinx_engine: 'sphinx'
|
|
21
|
-
- ruby: '3.0'
|
|
22
|
-
rails: '5_0'
|
|
23
|
-
- ruby: '3.0'
|
|
24
|
-
rails: '5_1'
|
|
25
|
-
- ruby: '3.0'
|
|
26
|
-
rails: '5_2'
|
|
27
|
-
- ruby: '3.1'
|
|
28
|
-
rails: '5_0'
|
|
29
|
-
- ruby: '3.1'
|
|
30
|
-
rails: '5_1'
|
|
31
|
-
- ruby: '3.1'
|
|
32
|
-
rails: '5_2'
|
|
33
|
-
- ruby: '3.2'
|
|
34
|
-
rails: '5_0'
|
|
35
|
-
- ruby: '3.2'
|
|
36
|
-
rails: '5_1'
|
|
37
|
-
- ruby: '3.2'
|
|
38
|
-
rails: '5_2'
|
|
17
|
+
jobs:
|
|
18
|
+
test-matrix:
|
|
19
|
+
runs-on: ubuntu-latest
|
|
39
20
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
image: postgres:10
|
|
43
|
-
env:
|
|
44
|
-
POSTGRES_USER: postgres
|
|
45
|
-
POSTGRES_PASSWORD: thinking_sphinx
|
|
46
|
-
POSTGRES_DB: thinking_sphinx
|
|
47
|
-
ports: ['5432:5432']
|
|
48
|
-
# needed because the postgres container does not provide a healthcheck
|
|
49
|
-
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
50
|
-
|
|
51
|
-
mysql:
|
|
52
|
-
image: mysql:5.7
|
|
53
|
-
env:
|
|
54
|
-
MYSQL_ROOT_PASSWORD: thinking_sphinx
|
|
55
|
-
MYSQL_DATABASE: thinking_sphinx
|
|
56
|
-
ports: ['3306:3306']
|
|
57
|
-
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
21
|
+
outputs:
|
|
22
|
+
matrix: ${{ steps.matrix.outputs.matrix }}
|
|
58
23
|
|
|
59
24
|
steps:
|
|
60
|
-
- uses: actions/checkout@
|
|
61
|
-
- uses:
|
|
25
|
+
- uses: actions/checkout@v6
|
|
26
|
+
- uses: ruby/setup-ruby@v1
|
|
62
27
|
with:
|
|
63
|
-
ruby-version:
|
|
64
|
-
|
|
65
|
-
sphinx-version: ${{ matrix.sphinx_version }}
|
|
66
|
-
sphinx-engine: ${{ matrix.sphinx_engine }}
|
|
67
|
-
database: ${{ matrix.database }}
|
|
68
|
-
timeout-minutes: 12
|
|
28
|
+
ruby-version: 4.0
|
|
29
|
+
bundler-cache: true
|
|
69
30
|
|
|
70
|
-
|
|
31
|
+
- id: matrix
|
|
32
|
+
run: echo "matrix=$(./bin/testmatrix)" | tee -a "$GITHUB_OUTPUT"
|
|
33
|
+
|
|
34
|
+
- run: echo "$MATRIX" | yq -P
|
|
35
|
+
env:
|
|
36
|
+
MATRIX: ${{ steps.matrix.outputs.matrix }}
|
|
37
|
+
|
|
38
|
+
test:
|
|
71
39
|
runs-on: ubuntu-22.04
|
|
40
|
+
needs: [test-matrix]
|
|
72
41
|
|
|
73
42
|
strategy:
|
|
74
43
|
fail-fast: false
|
|
75
44
|
matrix:
|
|
76
|
-
|
|
77
|
-
rails: [ '5_0', '5_1', '5_2', '6_0', '6_1', '7_0', '7_1' ]
|
|
78
|
-
database: [ 'mysql2', 'postgresql' ]
|
|
79
|
-
sphinx_version: [ '4.0.2', '6.0.0' ]
|
|
80
|
-
sphinx_engine: [ 'manticore' ]
|
|
81
|
-
exclude:
|
|
82
|
-
- ruby: '3.0'
|
|
83
|
-
rails: '5_0'
|
|
84
|
-
- ruby: '3.0'
|
|
85
|
-
rails: '5_1'
|
|
86
|
-
- ruby: '3.0'
|
|
87
|
-
rails: '5_2'
|
|
88
|
-
- ruby: '3.1'
|
|
89
|
-
rails: '5_0'
|
|
90
|
-
- ruby: '3.1'
|
|
91
|
-
rails: '5_1'
|
|
92
|
-
- ruby: '3.1'
|
|
93
|
-
rails: '5_2'
|
|
94
|
-
- ruby: '3.2'
|
|
95
|
-
rails: '5_0'
|
|
96
|
-
- ruby: '3.2'
|
|
97
|
-
rails: '5_1'
|
|
98
|
-
- ruby: '3.2'
|
|
99
|
-
rails: '5_2'
|
|
45
|
+
include: ${{ fromJSON(needs.test-matrix.outputs.matrix) }}
|
|
100
46
|
|
|
101
47
|
services:
|
|
102
48
|
postgres:
|
|
@@ -110,7 +56,7 @@ jobs:
|
|
|
110
56
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
111
57
|
|
|
112
58
|
mysql:
|
|
113
|
-
image: mysql:
|
|
59
|
+
image: mysql:5.7
|
|
114
60
|
env:
|
|
115
61
|
MYSQL_ROOT_PASSWORD: thinking_sphinx
|
|
116
62
|
MYSQL_DATABASE: thinking_sphinx
|
|
@@ -118,7 +64,7 @@ jobs:
|
|
|
118
64
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
119
65
|
|
|
120
66
|
steps:
|
|
121
|
-
- uses: actions/checkout@
|
|
67
|
+
- uses: actions/checkout@v6
|
|
122
68
|
- uses: ./.github/actions/test
|
|
123
69
|
with:
|
|
124
70
|
ruby-version: ${{ matrix.ruby }}
|
data/Appraisals
CHANGED
|
@@ -51,3 +51,21 @@ appraise 'rails_7_1' do
|
|
|
51
51
|
gem 'mysql2', '~> 0.5.0', :platform => :ruby
|
|
52
52
|
gem 'pg', '~> 1.0', :platform => :ruby
|
|
53
53
|
end if RUBY_PLATFORM != 'java' && RUBY_VERSION.to_f >= 2.7
|
|
54
|
+
|
|
55
|
+
appraise 'rails_7_2' do
|
|
56
|
+
gem 'rails', '~> 7.2.0'
|
|
57
|
+
gem 'mysql2', '~> 0.5.0', :platform => :ruby
|
|
58
|
+
gem 'pg', '~> 1.0', :platform => :ruby
|
|
59
|
+
end if RUBY_PLATFORM != 'java' && RUBY_VERSION.to_f >= 3.1
|
|
60
|
+
|
|
61
|
+
appraise 'rails_8_0' do
|
|
62
|
+
gem 'rails', '~> 8.0.0'
|
|
63
|
+
gem 'mysql2', '~> 0.5.0', :platform => :ruby
|
|
64
|
+
gem 'pg', '~> 1.0', :platform => :ruby
|
|
65
|
+
end if RUBY_PLATFORM != 'java' && RUBY_VERSION.to_f >= 3.2
|
|
66
|
+
|
|
67
|
+
appraise 'rails_8_1' do
|
|
68
|
+
gem 'rails', '~> 8.1.0'
|
|
69
|
+
gem 'mysql2', '~> 0.5.0', :platform => :ruby
|
|
70
|
+
gem 'pg', '~> 1.0', :platform => :ruby
|
|
71
|
+
end if RUBY_PLATFORM != 'java' && RUBY_VERSION.to_f >= 3.2
|
data/CHANGELOG.markdown
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project (at least, from v3.0.0 onwards) are documented in this file.
|
|
4
4
|
|
|
5
|
+
## 6.0.0 - 2026-01-11
|
|
6
|
+
|
|
7
|
+
### Breaking
|
|
8
|
+
|
|
9
|
+
* Dropping support for Ruby versions prior to v3.0.
|
|
10
|
+
* Dropping support for Rails versions prior to v6.1.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
* Improved support for Rails 7.2-8.1.
|
|
15
|
+
|
|
5
16
|
## 5.6.0 - 2024-07-07
|
|
6
17
|
|
|
7
18
|
### Added
|
data/Gemfile
CHANGED
data/README.textile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
h1. Thinking Sphinx
|
|
2
2
|
|
|
3
|
-
Thinking Sphinx is a library for connecting ActiveRecord to the Sphinx full-text search tool, and integrates closely with Rails (but also works with other Ruby web frameworks). The current release is
|
|
3
|
+
Thinking Sphinx is a library for connecting ActiveRecord to the Sphinx full-text search tool, and integrates closely with Rails (but also works with other Ruby web frameworks). The current release is v6.0.0.
|
|
4
4
|
|
|
5
5
|
h2. Upgrading
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ It's a gem, so install it like you would any other gem. You will also need to sp
|
|
|
14
14
|
|
|
15
15
|
<pre><code>gem 'mysql2', '~> 0.4', :platform => :ruby
|
|
16
16
|
gem 'jdbc-mysql', '~> 5.1.35', :platform => :jruby
|
|
17
|
-
gem 'thinking-sphinx', '~>
|
|
17
|
+
gem 'thinking-sphinx', '~> 6.0'</code></pre>
|
|
18
18
|
|
|
19
19
|
The MySQL gems mentioned are required for connecting to Sphinx, so please include it even when you're using PostgreSQL for your database.
|
|
20
20
|
|
|
@@ -29,12 +29,12 @@ h2. Requirements
|
|
|
29
29
|
The current release of Thinking Sphinx works with the following versions of its dependencies:
|
|
30
30
|
|
|
31
31
|
|_. Library |_. Minimum |_. Tested Against |
|
|
32
|
-
| Ruby |
|
|
32
|
+
| Ruby | v3.0 | v3.0..v4.0 |
|
|
33
33
|
| Sphinx | v2.2.11 | v2.2.11, v3.4.1 |
|
|
34
34
|
| Manticore | v2.8 | v4.0, v6.0 |
|
|
35
|
-
| ActiveRecord |
|
|
35
|
+
| ActiveRecord | v6.1 | v6.1..v8.1 |
|
|
36
36
|
|
|
37
|
-
It _might_ work with older versions of Ruby, but it's highly recommended to update to a supported release.
|
|
37
|
+
It _might_ work with older versions of Ruby (back to v2.7) and Rails (back to v5.0), but it's highly recommended to update to a supported release.
|
|
38
38
|
|
|
39
39
|
It should also work with JRuby, but the test environment for that in CI has been unreliable, hence that's not actively tested against at the moment.
|
|
40
40
|
|
|
@@ -46,13 +46,28 @@ If you're opting for Manticore instead, v2.8 or newer works, but v4 or newer is
|
|
|
46
46
|
|
|
47
47
|
h3. Rails and ActiveRecord
|
|
48
48
|
|
|
49
|
-
Currently Thinking Sphinx is built to support Rails/ActiveRecord
|
|
49
|
+
Currently Thinking Sphinx is built to support Rails/ActiveRecord 6.1 or newer. If you're using Sinatra and ActiveRecord instead of Rails, that's fine - just make sure you add the @:require => 'thinking_sphinx/sinatra'@ option when listing @thinking-sphinx@ in your Gemfile.
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
The last releases for older Rails versions:
|
|
52
|
+
|
|
53
|
+
|_. Rails Version |_. Thinking Sphinx Version |
|
|
54
|
+
| 6.0 | v5.6.0 |
|
|
55
|
+
| 5.2 | v5.6.0 |
|
|
56
|
+
| 5.1 | v5.6.0 |
|
|
57
|
+
| 5.0 | v5.6.0 |
|
|
58
|
+
| 4.2 | v5.6.0 |
|
|
59
|
+
| 4.1 | v4.4.1 |
|
|
60
|
+
| 4.0 | v4.4.1 |
|
|
61
|
+
| 3.2 | v4.4.1 |
|
|
62
|
+
| 3.1 | v3.0.6 |
|
|
63
|
+
| 3.0 | v2.1.0 |
|
|
64
|
+
| 2.3 | v1.5.0 |
|
|
65
|
+
|
|
66
|
+
Please note that these older versions are no longer actively supported.
|
|
52
67
|
|
|
53
68
|
h3. Ruby
|
|
54
69
|
|
|
55
|
-
You'll need either the standard Ruby (
|
|
70
|
+
You'll need either the standard Ruby (v3.0 or newer) or JRuby (9.1 or newer). The last release to support Ruby 2.4-2.7 is v5.6.0.
|
|
56
71
|
|
|
57
72
|
h3. Database Versions
|
|
58
73
|
|
|
@@ -81,4 +96,4 @@ You can then run the unit tests with @rake spec:unit@, the acceptance tests with
|
|
|
81
96
|
|
|
82
97
|
h2. Licence
|
|
83
98
|
|
|
84
|
-
Copyright (c) 2007-
|
|
99
|
+
Copyright (c) 2007-2026, Thinking Sphinx is developed and maintained by Pat Allan, and is released under the open MIT Licence. Many thanks to "all who have contributed patches":https://github.com/pat/thinking-sphinx/contributors.
|
data/bin/testmatrix
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
#! /usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "json"
|
|
5
|
+
|
|
6
|
+
RUBIES = %w[ 3.0 3.1 3.2 3.3 3.4 4.0 ]
|
|
7
|
+
DATABASES = %w[ mysql2 postgresql ]
|
|
8
|
+
SPHINX_ENGINES = {
|
|
9
|
+
"sphinx" => %w[ 2.2.11 3.4.1 ],
|
|
10
|
+
"manticore" => %w[ 4.0.2 6.0.0 ]
|
|
11
|
+
}.freeze
|
|
12
|
+
RAILS_VERSIONS = [
|
|
13
|
+
{ version: '6_1', min_ruby: 2.7, max_ruby: 3.3 },
|
|
14
|
+
{ version: '7_0', min_ruby: 2.7, max_ruby: 4.0 },
|
|
15
|
+
{ version: '7_1', min_ruby: 2.7, max_ruby: 4.0 },
|
|
16
|
+
{ version: '7_2', min_ruby: 3.1, max_ruby: 4.0 },
|
|
17
|
+
{ version: '8_0', min_ruby: 3.2, max_ruby: 4.0 },
|
|
18
|
+
{ version: '8_1', min_ruby: 3.2, max_ruby: 4.0 },
|
|
19
|
+
].freeze
|
|
20
|
+
|
|
21
|
+
# Returns an array of hashes, with each hash being a valid testable
|
|
22
|
+
# combination:
|
|
23
|
+
output = []
|
|
24
|
+
|
|
25
|
+
RUBIES.each do |ruby|
|
|
26
|
+
DATABASES.each do |database|
|
|
27
|
+
SPHINX_ENGINES.each do |sphinx_engine, sphinx_versions|
|
|
28
|
+
sphinx_versions.each do |sphinx_version|
|
|
29
|
+
# Sphinx 3.4.1 doesn't play nicely with Postgres.
|
|
30
|
+
next if database == 'postgresql' && sphinx_engine == 'sphinx' && sphinx_version == '3.4.1'
|
|
31
|
+
|
|
32
|
+
RAILS_VERSIONS.each do |rails|
|
|
33
|
+
next unless ruby.to_f >= rails[:min_ruby] && ruby.to_f <= rails[:max_ruby]
|
|
34
|
+
|
|
35
|
+
output << {
|
|
36
|
+
ruby: ruby,
|
|
37
|
+
rails: rails[:version],
|
|
38
|
+
database: database,
|
|
39
|
+
sphinx_engine: sphinx_engine,
|
|
40
|
+
sphinx_version: sphinx_version
|
|
41
|
+
}
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
puts JSON.generate(output.compact)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
class ThinkingSphinx::ActiveRecord::FilterReflection
|
|
4
4
|
ReflectionGenerator = case ActiveRecord::VERSION::STRING.to_f
|
|
5
|
-
when 5.2..
|
|
5
|
+
when (5.2..)
|
|
6
6
|
ThinkingSphinx::ActiveRecord::Depolymorph::OverriddenReflection
|
|
7
7
|
when 4.1..5.1
|
|
8
8
|
ThinkingSphinx::ActiveRecord::Depolymorph::AssociationReflection
|
data/spec/spec_helper.rb
CHANGED
data/thinking-sphinx.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = 'thinking-sphinx'
|
|
8
|
-
s.version = '
|
|
8
|
+
s.version = '6.0.0'
|
|
9
9
|
s.platform = Gem::Platform::RUBY
|
|
10
10
|
s.authors = ["Pat Allan"]
|
|
11
11
|
s.email = ["pat@freelancing-gods.com"]
|
|
@@ -14,6 +14,11 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
s.description = %Q{An intelligent layer for ActiveRecord (via Rails and Sinatra) for the Sphinx full-text search tool.}
|
|
15
15
|
s.license = 'MIT'
|
|
16
16
|
|
|
17
|
+
s.metadata['homepage_uri'] = s.homepage
|
|
18
|
+
s.metadata['source_code_uri'] = 'https://github.com/pat/thinking-sphinx'
|
|
19
|
+
s.metadata['changelog_uri'] = 'https://github.com/pat/thinking-sphinx/blob/develop/CHANGELOG.markdown'
|
|
20
|
+
s.metadata['rubygems_mfa_required'] = 'true'
|
|
21
|
+
|
|
17
22
|
s.files = `git ls-files`.split("\n")
|
|
18
23
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
24
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f|
|
|
@@ -21,12 +26,13 @@ Gem::Specification.new do |s|
|
|
|
21
26
|
}
|
|
22
27
|
s.require_paths = ['lib']
|
|
23
28
|
|
|
24
|
-
s.
|
|
25
|
-
|
|
26
|
-
s.add_runtime_dependency '
|
|
29
|
+
s.required_ruby_version = '>= 3.0'
|
|
30
|
+
|
|
31
|
+
s.add_runtime_dependency 'activerecord', '>= 6.1.0'
|
|
32
|
+
s.add_runtime_dependency 'joiner', '>= 0.6.0'
|
|
27
33
|
s.add_runtime_dependency 'middleware', '>= 0.1.0'
|
|
28
|
-
s.add_runtime_dependency 'innertube', '>= 1.0
|
|
29
|
-
s.add_runtime_dependency 'riddle', '~> 2.
|
|
34
|
+
s.add_runtime_dependency 'innertube', '>= 1.1.0'
|
|
35
|
+
s.add_runtime_dependency 'riddle', '~> 2.4'
|
|
30
36
|
|
|
31
37
|
s.add_development_dependency 'appraisal', '~> 1.0.2'
|
|
32
38
|
s.add_development_dependency 'combustion', '~> 1.1'
|
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:
|
|
4
|
+
version: 6.0.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: 2026-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -16,42 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 6.1.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: builder
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.1.2
|
|
34
|
-
type: :runtime
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - ">="
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.1.2
|
|
26
|
+
version: 6.1.0
|
|
41
27
|
- !ruby/object:Gem::Dependency
|
|
42
28
|
name: joiner
|
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
|
44
30
|
requirements:
|
|
45
31
|
- - ">="
|
|
46
32
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.
|
|
33
|
+
version: 0.6.0
|
|
48
34
|
type: :runtime
|
|
49
35
|
prerelease: false
|
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
37
|
requirements:
|
|
52
38
|
- - ">="
|
|
53
39
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.
|
|
40
|
+
version: 0.6.0
|
|
55
41
|
- !ruby/object:Gem::Dependency
|
|
56
42
|
name: middleware
|
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,28 +58,28 @@ dependencies:
|
|
|
72
58
|
requirements:
|
|
73
59
|
- - ">="
|
|
74
60
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 1.0
|
|
61
|
+
version: 1.1.0
|
|
76
62
|
type: :runtime
|
|
77
63
|
prerelease: false
|
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
65
|
requirements:
|
|
80
66
|
- - ">="
|
|
81
67
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 1.0
|
|
68
|
+
version: 1.1.0
|
|
83
69
|
- !ruby/object:Gem::Dependency
|
|
84
70
|
name: riddle
|
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
|
86
72
|
requirements:
|
|
87
73
|
- - "~>"
|
|
88
74
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '2.
|
|
75
|
+
version: '2.4'
|
|
90
76
|
type: :runtime
|
|
91
77
|
prerelease: false
|
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
79
|
requirements:
|
|
94
80
|
- - "~>"
|
|
95
81
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '2.
|
|
82
|
+
version: '2.4'
|
|
97
83
|
- !ruby/object:Gem::Dependency
|
|
98
84
|
name: appraisal
|
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -171,6 +157,7 @@ email:
|
|
|
171
157
|
executables:
|
|
172
158
|
- console
|
|
173
159
|
- loadsphinx
|
|
160
|
+
- testmatrix
|
|
174
161
|
extensions: []
|
|
175
162
|
extra_rdoc_files: []
|
|
176
163
|
files:
|
|
@@ -188,6 +175,7 @@ files:
|
|
|
188
175
|
- Rakefile
|
|
189
176
|
- bin/console
|
|
190
177
|
- bin/loadsphinx
|
|
178
|
+
- bin/testmatrix
|
|
191
179
|
- lib/thinking-sphinx.rb
|
|
192
180
|
- lib/thinking/sphinx.rb
|
|
193
181
|
- lib/thinking_sphinx.rb
|
|
@@ -514,7 +502,11 @@ files:
|
|
|
514
502
|
homepage: https://pat.github.io/thinking-sphinx/
|
|
515
503
|
licenses:
|
|
516
504
|
- MIT
|
|
517
|
-
metadata:
|
|
505
|
+
metadata:
|
|
506
|
+
homepage_uri: https://pat.github.io/thinking-sphinx/
|
|
507
|
+
source_code_uri: https://github.com/pat/thinking-sphinx
|
|
508
|
+
changelog_uri: https://github.com/pat/thinking-sphinx/blob/develop/CHANGELOG.markdown
|
|
509
|
+
rubygems_mfa_required: 'true'
|
|
518
510
|
post_install_message:
|
|
519
511
|
rdoc_options: []
|
|
520
512
|
require_paths:
|
|
@@ -523,14 +515,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
523
515
|
requirements:
|
|
524
516
|
- - ">="
|
|
525
517
|
- !ruby/object:Gem::Version
|
|
526
|
-
version: '0'
|
|
518
|
+
version: '3.0'
|
|
527
519
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
528
520
|
requirements:
|
|
529
521
|
- - ">="
|
|
530
522
|
- !ruby/object:Gem::Version
|
|
531
523
|
version: '0'
|
|
532
524
|
requirements: []
|
|
533
|
-
rubygems_version: 3.
|
|
525
|
+
rubygems_version: 3.5.22
|
|
534
526
|
signing_key:
|
|
535
527
|
specification_version: 4
|
|
536
528
|
summary: A smart wrapper over Sphinx for ActiveRecord
|