algoliasearch-rails 1.25.0 → 3.0.1
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/CHANGELOG.MD +79 -1
- data/Gemfile +12 -38
- data/Gemfile.lock +157 -149
- data/README.md +13 -41
- data/algoliasearch-rails.gemspec +5 -5
- data/lib/algoliasearch/algolia_job.rb +1 -1
- data/lib/algoliasearch/configuration.rb +33 -4
- data/lib/algoliasearch/pagination/kaminari.rb +1 -1
- data/lib/algoliasearch/pagination/pagy.rb +29 -0
- data/lib/algoliasearch/pagination.rb +1 -0
- data/lib/algoliasearch/utilities.rb +1 -1
- data/lib/algoliasearch/version.rb +1 -1
- data/lib/algoliasearch-rails.rb +185 -207
- data/spec/spec_helper.rb +12 -5
- metadata +8 -14
- data/.travis.yml +0 -62
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14ef8f9ecc85826893e288b3fc0ec82a908b407893edb067f0fe2acc05f89240
|
4
|
+
data.tar.gz: acd4e020ef97b41b6900e0c379abe1cb6f02e503980d0da7186e85250ba4eb75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 594ce23363e9706940a948f27b29db9be1a030859714672a3fba8aa2b3818173188cd64b294699f086966bc5b446ba51612a30fb9ae83ec80fbd2ea839ac7ade
|
7
|
+
data.tar.gz: 0ba91ece82a88fffadaeff270b1a1de90a7409bc09c370848b31cfeb732712df92c33382031d4d6c956f02d915a19655569e4eac3d9545086e591279aeb2f16e
|
data/CHANGELOG.MD
CHANGED
@@ -1,6 +1,84 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
## [Unreleased](https://github.com/algolia/algoliasearch-rails/compare/
|
3
|
+
## [Unreleased](https://github.com/algolia/algoliasearch-rails/compare/3.0.0...master)
|
4
|
+
|
5
|
+
## [3.0.1](https://github.com/algolia/algoliasearch-rails/compare/3.0.0...3.0.1)
|
6
|
+
### Fixed
|
7
|
+
* Ensure init when `check_settings=true` for atomic reindexes [`#453`](https://github.com/algolia/algoliasearch-rails/pull/453)
|
8
|
+
* Fix last task_id when no tasks to save [`#452`](https://github.com/algolia/algoliasearch-rails/pull/452)
|
9
|
+
|
10
|
+
## [3.0.0](https://github.com/algolia/algoliasearch-rails/compare/2.3.2...3.0.0)
|
11
|
+
This new major version leverages the latest version of the Ruby Algolia API client. It also drops (official) support for Rails 5.x and Ruby versions older than 2.5
|
12
|
+
For a list of known breaking changes, please refer to [the upgrade guide](./UPGRADING_TO_V3.MD)
|
13
|
+
|
14
|
+
## [2.3.2](https://github.com/algolia/algoliasearch-rails/compare/2.3.1...2.3.2)
|
15
|
+
### Added
|
16
|
+
* Support for Pagy pagination provider [`#443`](https://github.com/algolia/algoliasearch-rails/pull/443)
|
17
|
+
|
18
|
+
## [2.3.1](https://github.com/algolia/algoliasearch-rails/compare/2.3.0...2.3.1)
|
19
|
+
### Added
|
20
|
+
* Allow ActiveJob queue configuration [`#439`](https://github.com/algolia/algoliasearch-rails/pull/439)
|
21
|
+
* allow to configure user agent and other default options [`#438`](https://github.com/algolia/algoliasearch-rails/pull/438)
|
22
|
+
|
23
|
+
## [2.3.0](https://github.com/algolia/algoliasearch-rails/compare/2.2.2...2.3.0)
|
24
|
+
### Fixed
|
25
|
+
* bugfix: don't consider objectID changed when using custom ID through method [`#436`](https://github.com/algolia/algoliasearch-rails/pull/436)
|
26
|
+
|
27
|
+
## [2.2.2](https://github.com/algolia/algoliasearch-rails/compare/2.2.1...2.2.2)
|
28
|
+
### Fixed
|
29
|
+
* fix: wrong method name [`#429`](https://github.com/algolia/algoliasearch-rails/pull/429)
|
30
|
+
* fix: check if `Sequel::Model` is defined [`#433`](https://github.com/algolia/algoliasearch-rails/pull/433)
|
31
|
+
|
32
|
+
## [2.2.1](https://github.com/algolia/algoliasearch-rails/compare/2.2.0...2.2.1)
|
33
|
+
### Fixed
|
34
|
+
* fix:settings changes detection issue with empty array [`#424`](https://github.com/algolia/algoliasearch-rails/pull/424)
|
35
|
+
* fix: settings changes detection issue for replica indexes with inherit option [`#426`](https://github.com/algolia/algoliasearch-rails/pull/426)
|
36
|
+
* fix: make sync opt to be selectable for auto setting update logic [`#425`](https://github.com/algolia/algoliasearch-rails/pull/425)
|
37
|
+
|
38
|
+
### Added
|
39
|
+
* Add relevancyStrictness to IndexSettings [`#427`](https://github.com/algolia/algoliasearch-rails/pull/427)
|
40
|
+
|
41
|
+
## [2.2.0](https://github.com/algolia/algoliasearch-rails/compare/2.1.4...2.2.0)
|
42
|
+
### Added
|
43
|
+
* Support to pass Algolia API client options [`#420`](https://github.com/algolia/algoliasearch-rails/pull/420)
|
44
|
+
|
45
|
+
### Fixed
|
46
|
+
* Issue with `FrozenError` for newer Ruby versions [`#418`](https://github.com/algolia/algoliasearch-rails/pull/418)
|
47
|
+
* Only check index settings when indexing is enabled [`#416`](https://github.com/algolia/algoliasearch-rails/pull/416)
|
48
|
+
* Index intialization documentation [`#419`](https://github.com/algolia/algoliasearch-rails/pull/419)
|
49
|
+
|
50
|
+
## [2.1.4](https://github.com/algolia/algoliasearch-rails/compare/2.1.4...2.1.3)
|
51
|
+
### Fixed
|
52
|
+
- File formatting [`#414`](https://github.com/algolia/algoliasearch-rails/pull/414)
|
53
|
+
- Document supported Rails versions [`#407`](https://github.com/algolia/algoliasearch-rails/pull/407)
|
54
|
+
- Fixed error when using `:check_settings => false` [`#413`](https://github.com/algolia/algoliasearch-rails/pull/413)
|
55
|
+
|
56
|
+
### Removed
|
57
|
+
- Old references to TravisCI [`#408`](https://github.com/algolia/algoliasearch-rails/pull/408)
|
58
|
+
|
59
|
+
## [2.1.3](https://github.com/algolia/algoliasearch-rails/compare/2.1.3...2.1.2)
|
60
|
+
### Fixed
|
61
|
+
- Prevent an extra get_settings call even if `check_settings` is false [`#367`](https://github.com/algolia/algoliasearch-rails/pull/367)
|
62
|
+
|
63
|
+
## [2.1.2](https://github.com/algolia/algoliasearch-rails/compare/2.1.2...2.1.1)
|
64
|
+
### Fixed
|
65
|
+
- Error with keys that got symbolized by default [`#403`](https://github.com/algolia/algoliasearch-rails/pull/403)
|
66
|
+
|
67
|
+
## [2.1.1](https://github.com/algolia/algoliasearch-rails/compare/2.1.1...2.1.0)
|
68
|
+
### Fixed
|
69
|
+
- Error with Ruby 3 in regards to default splat behavior [`#400`](https://github.com/algolia/algoliasearch-rails/pull/400)
|
70
|
+
|
71
|
+
## [2.1.0](https://github.com/algolia/algoliasearch-rails/compare/2.1.0...2.0.0)
|
72
|
+
### Added
|
73
|
+
- Add support for [virtual replicas](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/#what-are-virtual-replicas) ([#386](https://github.com/algolia/algoliasearch-rails/pull/386))
|
74
|
+
|
75
|
+
|
76
|
+
## [2.0.0](https://github.com/algolia/algoliasearch-rails/compare/2.0.0...1.25.0)
|
77
|
+
|
78
|
+
### Breaking changes
|
79
|
+
- Adds support for `algolia` gem.
|
80
|
+
- Drops support for Ruby < 2.4
|
81
|
+
- Drops support for Rails < 5.1
|
4
82
|
|
5
83
|
## [1.25.0](https://github.com/algolia/algoliasearch-rails/compare/1.24.1...1.25.0) (2020-11-24)
|
6
84
|
|
data/Gemfile
CHANGED
@@ -1,41 +1,22 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
|
3
|
-
gem 'json', '
|
4
|
-
gem '
|
3
|
+
gem 'json', '>= 1.5.1'
|
4
|
+
gem 'algolia', '>= 3.5.2'
|
5
5
|
|
6
6
|
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
7
7
|
gem 'rubysl', '~> 2.0', :platform => :rbx
|
8
8
|
end
|
9
9
|
|
10
10
|
group :test do
|
11
|
-
rails_version = ENV["RAILS_VERSION"]
|
12
|
-
gem 'rails', rails_version
|
11
|
+
rails_version = ENV["RAILS_VERSION"] || '6.1'
|
12
|
+
gem 'rails', "~> #{rails_version}"
|
13
13
|
gem 'active_model_serializers'
|
14
|
-
if
|
15
|
-
gem '
|
16
|
-
|
17
|
-
gem '
|
18
|
-
gem 'rack-cache', '< 1.3'
|
19
|
-
gem 'mime-types', '< 2.6'
|
20
|
-
gem 'net-http-persistent', '< 3.0'
|
21
|
-
gem 'faraday', '< 0.10'
|
22
|
-
elsif defined?(RUBY_VERSION) && RUBY_VERSION == "1.9.3"
|
23
|
-
gem 'rack', '< 2'
|
24
|
-
gem 'rack-cache', '<= 1.7.1'
|
25
|
-
if Gem::Version.new(ENV['RAILS_VERSION'] || '3.2.0') >= Gem::Version.new('4.0')
|
26
|
-
gem 'mime-types', '~> 2.6'
|
27
|
-
else
|
28
|
-
gem 'mime-types', '< 3'
|
29
|
-
end
|
30
|
-
end
|
31
|
-
if defined?(RUBY_VERSION) &&
|
32
|
-
defined?(RUBY_ENGINE) &&
|
33
|
-
RUBY_ENGINE == 'ruby' &&
|
34
|
-
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.1')
|
35
|
-
gem 'net-http-persistent', '< 3.0'
|
14
|
+
if Gem::Version.new(rails_version) >= Gem::Version.new('6.0')
|
15
|
+
gem 'sqlite3', '~> 1.4.0', :platform => [:rbx, :ruby]
|
16
|
+
else
|
17
|
+
gem 'sqlite3', '< 1.4.0', :platform => [:rbx, :ruby]
|
36
18
|
end
|
37
|
-
gem 'rspec', '
|
38
|
-
gem 'sqlite3', '< 1.4.0', :platform => [:rbx, :ruby]
|
19
|
+
gem 'rspec', '~> 3.0'
|
39
20
|
gem 'jdbc-sqlite3', :platform => :jruby
|
40
21
|
gem 'activerecord-jdbc-adapter', :platform => :jruby
|
41
22
|
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
|
@@ -46,20 +27,13 @@ group :test do
|
|
46
27
|
end
|
47
28
|
|
48
29
|
group :development do
|
49
|
-
gem '
|
50
|
-
gem 'rake', '~> 10.1.0'
|
30
|
+
gem 'rake', '>= 10.1.0'
|
51
31
|
gem 'rdoc'
|
52
32
|
end
|
53
33
|
|
54
34
|
group :test, :development do
|
55
35
|
gem 'will_paginate', '>= 2.3.15'
|
56
|
-
|
57
|
-
|
58
|
-
RUBY_ENGINE == 'ruby' &&
|
59
|
-
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2')
|
60
|
-
gem 'kaminari', '< 1'
|
61
|
-
else
|
62
|
-
gem 'kaminari'
|
63
|
-
end
|
36
|
+
gem 'kaminari', '< 1'
|
37
|
+
gem 'pagy'
|
64
38
|
end
|
65
39
|
|
data/Gemfile.lock
CHANGED
@@ -1,153 +1,168 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
-
actioncable (
|
5
|
-
actionpack (=
|
4
|
+
actioncable (6.1.4.7)
|
5
|
+
actionpack (= 6.1.4.7)
|
6
|
+
activesupport (= 6.1.4.7)
|
6
7
|
nio4r (~> 2.0)
|
7
8
|
websocket-driver (>= 0.6.1)
|
8
|
-
|
9
|
-
actionpack (=
|
10
|
-
|
11
|
-
|
9
|
+
actionmailbox (6.1.4.7)
|
10
|
+
actionpack (= 6.1.4.7)
|
11
|
+
activejob (= 6.1.4.7)
|
12
|
+
activerecord (= 6.1.4.7)
|
13
|
+
activestorage (= 6.1.4.7)
|
14
|
+
activesupport (= 6.1.4.7)
|
15
|
+
mail (>= 2.7.1)
|
16
|
+
actionmailer (6.1.4.7)
|
17
|
+
actionpack (= 6.1.4.7)
|
18
|
+
actionview (= 6.1.4.7)
|
19
|
+
activejob (= 6.1.4.7)
|
20
|
+
activesupport (= 6.1.4.7)
|
12
21
|
mail (~> 2.5, >= 2.5.4)
|
13
22
|
rails-dom-testing (~> 2.0)
|
14
|
-
actionpack (
|
15
|
-
actionview (=
|
16
|
-
activesupport (=
|
17
|
-
rack (~> 2.0, >= 2.0.
|
23
|
+
actionpack (6.1.4.7)
|
24
|
+
actionview (= 6.1.4.7)
|
25
|
+
activesupport (= 6.1.4.7)
|
26
|
+
rack (~> 2.0, >= 2.0.9)
|
18
27
|
rack-test (>= 0.6.3)
|
19
28
|
rails-dom-testing (~> 2.0)
|
20
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
21
|
-
|
22
|
-
|
29
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
30
|
+
actiontext (6.1.4.7)
|
31
|
+
actionpack (= 6.1.4.7)
|
32
|
+
activerecord (= 6.1.4.7)
|
33
|
+
activestorage (= 6.1.4.7)
|
34
|
+
activesupport (= 6.1.4.7)
|
35
|
+
nokogiri (>= 1.8.5)
|
36
|
+
actionview (6.1.4.7)
|
37
|
+
activesupport (= 6.1.4.7)
|
23
38
|
builder (~> 3.1)
|
24
39
|
erubi (~> 1.4)
|
25
40
|
rails-dom-testing (~> 2.0)
|
26
|
-
rails-html-sanitizer (~> 1.
|
27
|
-
active_model_serializers (0.10.
|
28
|
-
actionpack (>= 4.1, <
|
29
|
-
activemodel (>= 4.1, <
|
41
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
42
|
+
active_model_serializers (0.10.13)
|
43
|
+
actionpack (>= 4.1, < 7.1)
|
44
|
+
activemodel (>= 4.1, < 7.1)
|
30
45
|
case_transform (>= 0.2)
|
31
46
|
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
|
32
|
-
activejob (
|
33
|
-
activesupport (=
|
47
|
+
activejob (6.1.4.7)
|
48
|
+
activesupport (= 6.1.4.7)
|
34
49
|
globalid (>= 0.3.6)
|
35
|
-
activemodel (
|
36
|
-
activesupport (=
|
37
|
-
activerecord (
|
38
|
-
activemodel (=
|
39
|
-
activesupport (=
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
activerecord (=
|
44
|
-
|
45
|
-
|
50
|
+
activemodel (6.1.4.7)
|
51
|
+
activesupport (= 6.1.4.7)
|
52
|
+
activerecord (6.1.4.7)
|
53
|
+
activemodel (= 6.1.4.7)
|
54
|
+
activesupport (= 6.1.4.7)
|
55
|
+
activestorage (6.1.4.7)
|
56
|
+
actionpack (= 6.1.4.7)
|
57
|
+
activejob (= 6.1.4.7)
|
58
|
+
activerecord (= 6.1.4.7)
|
59
|
+
activesupport (= 6.1.4.7)
|
60
|
+
marcel (~> 1.0.0)
|
61
|
+
mini_mime (>= 1.1.0)
|
62
|
+
activesupport (6.1.4.7)
|
46
63
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
47
|
-
i18n (>=
|
48
|
-
minitest (
|
49
|
-
tzinfo (~>
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
64
|
+
i18n (>= 1.6, < 2)
|
65
|
+
minitest (>= 5.1)
|
66
|
+
tzinfo (~> 2.0)
|
67
|
+
zeitwerk (~> 2.3)
|
68
|
+
algolia (2.3.2)
|
69
|
+
faraday (>= 0.15, < 3)
|
70
|
+
faraday-net_http_persistent (>= 0.15, < 3)
|
71
|
+
multi_json (~> 1.0)
|
72
|
+
net-http-persistent
|
73
|
+
base64 (0.2.0)
|
56
74
|
builder (3.2.4)
|
57
75
|
case_transform (0.2)
|
58
76
|
activesupport
|
59
|
-
concurrent-ruby (1.
|
77
|
+
concurrent-ruby (1.2.2)
|
78
|
+
connection_pool (2.4.1)
|
60
79
|
crass (1.0.6)
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
net-http-pipeline
|
76
|
-
globalid (0.4.2)
|
77
|
-
activesupport (>= 4.2.0)
|
78
|
-
highline (2.0.3)
|
79
|
-
httpclient (2.8.3)
|
80
|
-
i18n (1.8.5)
|
80
|
+
date (3.3.3)
|
81
|
+
diff-lcs (1.5.1)
|
82
|
+
erubi (1.12.0)
|
83
|
+
faraday (2.8.1)
|
84
|
+
base64
|
85
|
+
faraday-net_http (>= 2.0, < 3.1)
|
86
|
+
ruby2_keywords (>= 0.0.4)
|
87
|
+
faraday-net_http (3.0.2)
|
88
|
+
faraday-net_http_persistent (2.3.0)
|
89
|
+
faraday (~> 2.5)
|
90
|
+
net-http-persistent (>= 4.0.4, < 5)
|
91
|
+
globalid (1.1.0)
|
92
|
+
activesupport (>= 5.0)
|
93
|
+
i18n (1.14.1)
|
81
94
|
concurrent-ruby (~> 1.0)
|
82
|
-
json (
|
83
|
-
json_pure (2.3.1)
|
95
|
+
json (2.6.3)
|
84
96
|
jsonapi-renderer (0.2.2)
|
85
|
-
kaminari (
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
kaminari-core (= 1.2.1)
|
90
|
-
kaminari-actionview (1.2.1)
|
91
|
-
actionview
|
92
|
-
kaminari-core (= 1.2.1)
|
93
|
-
kaminari-activerecord (1.2.1)
|
94
|
-
activerecord
|
95
|
-
kaminari-core (= 1.2.1)
|
96
|
-
kaminari-core (1.2.1)
|
97
|
-
launchy (2.4.3)
|
98
|
-
addressable (~> 2.3)
|
99
|
-
loofah (2.7.0)
|
97
|
+
kaminari (0.17.0)
|
98
|
+
actionpack (>= 3.0.0)
|
99
|
+
activesupport (>= 3.0.0)
|
100
|
+
loofah (2.21.3)
|
100
101
|
crass (~> 1.0.2)
|
101
|
-
nokogiri (>= 1.
|
102
|
-
mail (2.
|
102
|
+
nokogiri (>= 1.12.0)
|
103
|
+
mail (2.8.1)
|
103
104
|
mini_mime (>= 0.1.1)
|
104
|
-
|
105
|
-
|
105
|
+
net-imap
|
106
|
+
net-pop
|
107
|
+
net-smtp
|
108
|
+
marcel (1.0.2)
|
106
109
|
method_source (1.0.0)
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
minitest (5.14.2)
|
110
|
+
mini_mime (1.1.5)
|
111
|
+
mini_portile2 (2.8.4)
|
112
|
+
minitest (5.19.0)
|
111
113
|
multi_json (1.15.0)
|
112
|
-
|
113
|
-
|
114
|
-
net-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
114
|
+
net-http-persistent (4.0.4)
|
115
|
+
connection_pool (~> 2.2)
|
116
|
+
net-imap (0.3.7)
|
117
|
+
date
|
118
|
+
net-protocol
|
119
|
+
net-pop (0.1.2)
|
120
|
+
net-protocol
|
121
|
+
net-protocol (0.2.1)
|
122
|
+
timeout
|
123
|
+
net-smtp (0.3.3)
|
124
|
+
net-protocol
|
125
|
+
nio4r (2.5.9)
|
126
|
+
nokogiri (1.13.10)
|
127
|
+
mini_portile2 (~> 2.8.0)
|
128
|
+
racc (~> 1.4)
|
129
|
+
pagy (6.5.0)
|
130
|
+
psych (5.1.0)
|
131
|
+
stringio
|
132
|
+
racc (1.7.1)
|
133
|
+
rack (2.2.8)
|
134
|
+
rack-test (2.1.0)
|
135
|
+
rack (>= 1.3)
|
136
|
+
rails (6.1.4.7)
|
137
|
+
actioncable (= 6.1.4.7)
|
138
|
+
actionmailbox (= 6.1.4.7)
|
139
|
+
actionmailer (= 6.1.4.7)
|
140
|
+
actionpack (= 6.1.4.7)
|
141
|
+
actiontext (= 6.1.4.7)
|
142
|
+
actionview (= 6.1.4.7)
|
143
|
+
activejob (= 6.1.4.7)
|
144
|
+
activemodel (= 6.1.4.7)
|
145
|
+
activerecord (= 6.1.4.7)
|
146
|
+
activestorage (= 6.1.4.7)
|
147
|
+
activesupport (= 6.1.4.7)
|
148
|
+
bundler (>= 1.15.0)
|
149
|
+
railties (= 6.1.4.7)
|
137
150
|
sprockets-rails (>= 2.0.0)
|
138
|
-
rails-dom-testing (2.0
|
139
|
-
activesupport (>=
|
151
|
+
rails-dom-testing (2.2.0)
|
152
|
+
activesupport (>= 5.0.0)
|
153
|
+
minitest
|
140
154
|
nokogiri (>= 1.6)
|
141
|
-
rails-html-sanitizer (1.
|
142
|
-
loofah (~> 2.
|
143
|
-
railties (
|
144
|
-
actionpack (=
|
145
|
-
activesupport (=
|
155
|
+
rails-html-sanitizer (1.5.0)
|
156
|
+
loofah (~> 2.19, >= 2.19.1)
|
157
|
+
railties (6.1.4.7)
|
158
|
+
actionpack (= 6.1.4.7)
|
159
|
+
activesupport (= 6.1.4.7)
|
146
160
|
method_source
|
147
|
-
rake (>= 0.
|
148
|
-
thor (
|
161
|
+
rake (>= 0.13)
|
162
|
+
thor (~> 1.0)
|
149
163
|
rake (10.1.1)
|
150
|
-
rdoc (6.
|
164
|
+
rdoc (6.5.0)
|
165
|
+
psych (>= 4.0.0)
|
151
166
|
redgreen (1.2.2)
|
152
167
|
rspec (2.99.0)
|
153
168
|
rspec-core (~> 2.99.0)
|
@@ -157,33 +172,26 @@ GEM
|
|
157
172
|
rspec-expectations (2.99.2)
|
158
173
|
diff-lcs (>= 1.1.3, < 2.0)
|
159
174
|
rspec-mocks (2.99.4)
|
160
|
-
ruby2_keywords (0.0.
|
161
|
-
sequel (5.
|
162
|
-
sprockets (4.0
|
175
|
+
ruby2_keywords (0.0.5)
|
176
|
+
sequel (5.71.0)
|
177
|
+
sprockets (4.2.0)
|
163
178
|
concurrent-ruby (~> 1.0)
|
164
|
-
rack (
|
165
|
-
sprockets-rails (3.
|
166
|
-
actionpack (>=
|
167
|
-
activesupport (>=
|
179
|
+
rack (>= 2.2.4, < 4)
|
180
|
+
sprockets-rails (3.4.2)
|
181
|
+
actionpack (>= 5.2)
|
182
|
+
activesupport (>= 5.2)
|
168
183
|
sprockets (>= 3.0.0)
|
169
|
-
sqlite3 (1.
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
highline (~> 2.0)
|
177
|
-
json_pure (~> 2.3)
|
178
|
-
launchy (~> 2.1, < 2.5.0)
|
179
|
-
pusher-client (~> 0.4)
|
180
|
-
tzinfo (1.2.7)
|
181
|
-
thread_safe (~> 0.1)
|
182
|
-
websocket (1.2.8)
|
183
|
-
websocket-driver (0.7.3)
|
184
|
+
sqlite3 (1.4.4)
|
185
|
+
stringio (3.0.6)
|
186
|
+
thor (1.2.2)
|
187
|
+
timeout (0.4.0)
|
188
|
+
tzinfo (2.0.6)
|
189
|
+
concurrent-ruby (~> 1.0)
|
190
|
+
websocket-driver (0.7.6)
|
184
191
|
websocket-extensions (>= 0.1.0)
|
185
192
|
websocket-extensions (0.1.5)
|
186
|
-
will_paginate (
|
193
|
+
will_paginate (4.0.0)
|
194
|
+
zeitwerk (2.6.11)
|
187
195
|
|
188
196
|
PLATFORMS
|
189
197
|
ruby
|
@@ -192,18 +200,18 @@ DEPENDENCIES
|
|
192
200
|
active_model_serializers
|
193
201
|
activerecord-jdbc-adapter
|
194
202
|
activerecord-jdbcsqlite3-adapter
|
195
|
-
|
203
|
+
algolia (< 3.0.0)
|
196
204
|
jdbc-sqlite3
|
197
|
-
json (
|
198
|
-
kaminari
|
199
|
-
|
205
|
+
json (>= 1.5.1)
|
206
|
+
kaminari (< 1)
|
207
|
+
pagy
|
208
|
+
rails (~> 6.1)
|
200
209
|
rake (~> 10.1.0)
|
201
210
|
rdoc
|
202
211
|
redgreen
|
203
212
|
rspec (>= 2.5.0, < 3.0)
|
204
213
|
sequel (>= 4.0)
|
205
|
-
sqlite3 (
|
206
|
-
travis
|
214
|
+
sqlite3 (~> 1.4.0)
|
207
215
|
will_paginate (>= 2.3.15)
|
208
216
|
|
209
217
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
<p align="center">
|
2
2
|
<a href="https://www.algolia.com">
|
3
|
-
<img alt="Algolia for Rails" src="https://raw.githubusercontent.com/algolia/algoliasearch-client-common/master/banners/rails.png"
|
3
|
+
<img alt="Algolia for Rails" src="https://raw.githubusercontent.com/algolia/algoliasearch-client-common/master/banners/rails.png"/>
|
4
4
|
</a>
|
5
|
+
</p>
|
5
6
|
|
6
|
-
|
7
|
+
<h4 align="center">The perfect starting point to integrate <a href="https://algolia.com" target="_blank">Algolia</a> within your Rails project</h4>
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
</p>
|
9
|
+
<p align="center">
|
10
|
+
<a href="https://circleci.com/gh/algolia/algoliasearch-rails"><img src="https://circleci.com/gh/algolia/algoliasearch-rails.svg?style=shield" alt="CircleCI" /></a>
|
11
|
+
<a href="http://badge.fury.io/rb/algoliasearch-rails"><img src="https://badge.fury.io/rb/algoliasearch-rails.svg" alt="Gem Version"/></a>
|
12
|
+
<a href="https://codeclimate.com/github/algolia/algoliasearch-rails"><img src="https://codeclimate.com/github/algolia/algoliasearch-rails.svg" alt="Code Climate"/></a>
|
13
|
+
<img src="https://img.shields.io/badge/ActiveRecord-yes-blue.svg?style=flat-square" alt="ActiveRecord"/>
|
14
|
+
<img src="https://img.shields.io/badge/Mongoid-yes-blue.svg?style=flat-square" alt="Mongoid"/>
|
15
|
+
<img src="https://img.shields.io/badge/Sequel-yes-blue.svg?style=flat-square" alt="Sequel"/>
|
16
16
|
</p>
|
17
17
|
|
18
18
|
<p align="center">
|
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
|
28
28
|
This gem let you easily integrate the Algolia Search API to your favorite ORM. It's based on the [algoliasearch-client-ruby](https://github.com/algolia/algoliasearch-client-ruby) gem.
|
29
|
-
Rails
|
29
|
+
Rails 6.x and 7.x are supported.
|
30
30
|
|
31
31
|
You might be interested in the sample Ruby on Rails application providing a `autocomplete.js`-based auto-completion and `InstantSearch.js`-based instant search results page: [algoliasearch-rails-example](https://github.com/algolia/algoliasearch-rails-example/).
|
32
32
|
|
@@ -128,11 +128,6 @@ You can configure a various timeout thresholds by setting the following options
|
|
128
128
|
AlgoliaSearch.configuration = {
|
129
129
|
application_id: 'YourApplicationID',
|
130
130
|
api_key: 'YourAPIKey',
|
131
|
-
connect_timeout: 2,
|
132
|
-
receive_timeout: 30,
|
133
|
-
send_timeout: 30,
|
134
|
-
batch_timeout: 120,
|
135
|
-
search_timeout: 5
|
136
131
|
}
|
137
132
|
```
|
138
133
|
|
@@ -517,7 +512,7 @@ class MySidekiqWorker
|
|
517
512
|
if remove
|
518
513
|
# the record has likely already been removed from your database so we cannot
|
519
514
|
# use ActiveRecord#find to load it
|
520
|
-
index =
|
515
|
+
index = AlgoliaSearch.client.init_index("index_name")
|
521
516
|
index.delete_object(id)
|
522
517
|
else
|
523
518
|
# the record should be present
|
@@ -550,7 +545,7 @@ class MySidekiqWorker
|
|
550
545
|
if remove
|
551
546
|
# the record has likely already been removed from your database so we cannot
|
552
547
|
# use ActiveRecord#find to load it
|
553
|
-
index =
|
548
|
+
index = AlgoliaSearch.client.init_index("index_name")
|
554
549
|
index.delete_object(id)
|
555
550
|
else
|
556
551
|
# the record should be present
|
@@ -1160,29 +1155,6 @@ class User < ActiveRecord::Base
|
|
1160
1155
|
end
|
1161
1156
|
```
|
1162
1157
|
|
1163
|
-
Or you may want to mock Algolia's API calls. We provide a [WebMock](https://github.com/bblimke/webmock) sample configuration that you can use including `algolia/webmock`:
|
1164
|
-
|
1165
|
-
```ruby
|
1166
|
-
require 'algolia/webmock'
|
1167
|
-
|
1168
|
-
describe 'With a mocked client' do
|
1169
|
-
|
1170
|
-
before(:each) do
|
1171
|
-
WebMock.enable!
|
1172
|
-
end
|
1173
|
-
|
1174
|
-
it "shouldn't perform any API calls here" do
|
1175
|
-
User.create(name: 'My Indexed User') # mocked, no API call performed
|
1176
|
-
User.search('').should == {} # mocked, no API call performed
|
1177
|
-
end
|
1178
|
-
|
1179
|
-
after(:each) do
|
1180
|
-
WebMock.disable!
|
1181
|
-
end
|
1182
|
-
|
1183
|
-
end
|
1184
|
-
```
|
1185
|
-
|
1186
1158
|
|
1187
1159
|
## ❓ Troubleshooting
|
1188
1160
|
|