algoliasearch-rails 1.19.1 → 2.2.2
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 +5 -5
- data/{ChangeLog → CHANGELOG.MD} +194 -1
- data/Gemfile +14 -37
- data/Gemfile.lock +189 -164
- data/LICENSE +6 -7
- data/README.md +143 -53
- data/algoliasearch-rails.gemspec +10 -10
- data/lib/algoliasearch/configuration.rb +28 -2
- data/lib/algoliasearch/pagination/kaminari.rb +1 -1
- data/lib/algoliasearch/tasks/algoliasearch.rake +6 -1
- data/lib/algoliasearch/utilities.rb +19 -4
- data/lib/algoliasearch/version.rb +3 -0
- data/lib/algoliasearch-rails.rb +236 -134
- data/spec/spec_helper.rb +20 -4
- metadata +14 -30
- data/.travis.yml +0 -51
- data/VERSION +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cc15b367cfcf9859a354bc12cc93aa844e32c88147d929a71ed7a9913ced85b4
|
4
|
+
data.tar.gz: 3bdc03e4a7644dbfe306c6d9748c20f8b95e916bd4185059712f735050ed10f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1527739dd334bbedce3883a5f664534d91a35ce6948f752e90bd77e418302660e9a3cabbf0f2e67d900bff1335bbad95c047b8954563f278dbf629dc8fac8d5
|
7
|
+
data.tar.gz: 86b196e2196d3730e90a34cbfad5bb32022fdb94ee5160471f1c2b79e8f1302d2095f50a1376b292b613803542767b237fdab70f10c90811ae6c52a0a91ef94a
|
data/{ChangeLog → CHANGELOG.MD}
RENAMED
@@ -1,4 +1,197 @@
|
|
1
|
-
CHANGELOG
|
1
|
+
# CHANGELOG
|
2
|
+
|
3
|
+
## [Unreleased](https://github.com/algolia/algoliasearch-rails/compare/2.2.1...master)
|
4
|
+
|
5
|
+
## [2.2.2](https://github.com/algolia/algoliasearch-rails/compare/2.2.1...2.2.2)
|
6
|
+
### Fixed
|
7
|
+
* fix: wrong method name [`#429`](https://github.com/algolia/algoliasearch-rails/pull/429)
|
8
|
+
* fix: check if `Sequel::Model` is defined [`#433`](https://github.com/algolia/algoliasearch-rails/pull/433)
|
9
|
+
|
10
|
+
## [2.2.1](https://github.com/algolia/algoliasearch-rails/compare/2.2.0...2.2.1)
|
11
|
+
### Fixed
|
12
|
+
* fix:settings changes detection issue with empty array [`#424`](https://github.com/algolia/algoliasearch-rails/pull/424)
|
13
|
+
* fix: settings changes detection issue for replica indexes with inherit option [`#426`](https://github.com/algolia/algoliasearch-rails/pull/426)
|
14
|
+
* fix: make sync opt to be selectable for auto setting update logic [`#425`](https://github.com/algolia/algoliasearch-rails/pull/425)
|
15
|
+
|
16
|
+
### Added
|
17
|
+
* Add relevancyStrictness to IndexSettings [`#427`](https://github.com/algolia/algoliasearch-rails/pull/427)
|
18
|
+
|
19
|
+
## [2.2.0](https://github.com/algolia/algoliasearch-rails/compare/2.1.4...2.2.0)
|
20
|
+
### Added
|
21
|
+
* Support to pass Algolia API client options [`#420`](https://github.com/algolia/algoliasearch-rails/pull/420)
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
* Issue with `FrozenError` for newer Ruby versions [`#418`](https://github.com/algolia/algoliasearch-rails/pull/418)
|
25
|
+
* Only check index settings when indexing is enabled [`#416`](https://github.com/algolia/algoliasearch-rails/pull/416)
|
26
|
+
* Index intialization documentation [`#419`](https://github.com/algolia/algoliasearch-rails/pull/419)
|
27
|
+
|
28
|
+
## [2.1.4](https://github.com/algolia/algoliasearch-rails/compare/2.1.4...2.1.3)
|
29
|
+
### Fixed
|
30
|
+
- File formatting [`#414`](https://github.com/algolia/algoliasearch-rails/pull/414)
|
31
|
+
- Document supported Rails versions [`#407`](https://github.com/algolia/algoliasearch-rails/pull/407)
|
32
|
+
- Fixed error when using `:check_settings => false` [`#413`](https://github.com/algolia/algoliasearch-rails/pull/413)
|
33
|
+
|
34
|
+
### Removed
|
35
|
+
- Old references to TravisCI [`#408`](https://github.com/algolia/algoliasearch-rails/pull/408)
|
36
|
+
|
37
|
+
## [2.1.3](https://github.com/algolia/algoliasearch-rails/compare/2.1.3...2.1.2)
|
38
|
+
### Fixed
|
39
|
+
- Prevent an extra get_settings call even if `check_settings` is false [`#367`](https://github.com/algolia/algoliasearch-rails/pull/367)
|
40
|
+
|
41
|
+
## [2.1.2](https://github.com/algolia/algoliasearch-rails/compare/2.1.2...2.1.1)
|
42
|
+
### Fixed
|
43
|
+
- Error with keys that got symbolized by default [`#403`](https://github.com/algolia/algoliasearch-rails/pull/403)
|
44
|
+
|
45
|
+
## [2.1.1](https://github.com/algolia/algoliasearch-rails/compare/2.1.1...2.1.0)
|
46
|
+
### Fixed
|
47
|
+
- Error with Ruby 3 in regards to default splat behavior [`#400`](https://github.com/algolia/algoliasearch-rails/pull/400)
|
48
|
+
|
49
|
+
## [2.1.0](https://github.com/algolia/algoliasearch-rails/compare/2.1.0...2.0.0)
|
50
|
+
### Added
|
51
|
+
- 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))
|
52
|
+
|
53
|
+
|
54
|
+
## [2.0.0](https://github.com/algolia/algoliasearch-rails/compare/2.0.0...1.25.0)
|
55
|
+
|
56
|
+
### Breaking changes
|
57
|
+
- Adds support for `algolia` gem.
|
58
|
+
- Drops support for Ruby < 2.4
|
59
|
+
- Drops support for Rails < 5.1
|
60
|
+
|
61
|
+
## [1.25.0](https://github.com/algolia/algoliasearch-rails/compare/1.24.1...1.25.0) (2020-11-24)
|
62
|
+
|
63
|
+
### Added
|
64
|
+
- Pass array argument to geoloc ([#372](https://github.com/algolia/algoliasearch-rails/pull/372))
|
65
|
+
- Containerize the repo ([#391](https://github.com/algolia/algoliasearch-rails/pull/391))
|
66
|
+
|
67
|
+
### Fixed
|
68
|
+
- Use Zeitwerk for loading models in Rails 6 ([#364](https://github.com/algolia/algoliasearch-rails/pull/364))
|
69
|
+
|
70
|
+
## [1.24.1](https://github.com/algolia/algoliasearch-rails/releases/tag/1.24.1) (2020-07-15)
|
71
|
+
|
72
|
+
**Fixed**
|
73
|
+
|
74
|
+
* Fixes ruby warning 'Proc.new is deprecated'
|
75
|
+
|
76
|
+
## [1.24.0](https://github.com/algolia/algoliasearch-rails/releases/tag/1.24.0) (2020-02-21)
|
77
|
+
|
78
|
+
**Added**
|
79
|
+
|
80
|
+
* Adds indexLanguages in index settings
|
81
|
+
|
82
|
+
## [1.23.2](https://github.com/algolia/algoliasearch-rails/releases/tag/1.23.2) (2019-06-26)
|
83
|
+
|
84
|
+
**Fixed**
|
85
|
+
|
86
|
+
* Use `copy_index` when initiating a temporary index to preserve settings, synonyms, and rules.
|
87
|
+
|
88
|
+
|
89
|
+
## [1.23.0](https://github.com/algolia/algoliasearch-rails/releases/tag/1.23.0) (2019-06-25)
|
90
|
+
|
91
|
+
**Added**
|
92
|
+
|
93
|
+
* Introduce `rake algoliasearch:set_all_settings` command - PR [#315](https://github.com/algolia/algoliasearch-rails/pull/315)
|
94
|
+
|
95
|
+
This command will push settings for all models to all indices: primary index,
|
96
|
+
replicas and additional indices. It follows the `inherit: true` option.
|
97
|
+
It should typically be added to your deployment script
|
98
|
+
|
99
|
+
* Add option to disable automatic settings - PR [#315](https://github.com/algolia/algoliasearch-rails/pull/315)
|
100
|
+
|
101
|
+
By default, this gem check your settings to see when to push them. Depending on
|
102
|
+
your implementation, it might create a lot of API calls. If you wish to disable
|
103
|
+
the automatic change detection for settings, use the `check_settings` option:
|
104
|
+
|
105
|
+
```ruby
|
106
|
+
class Musician < ActiveRecord::Base
|
107
|
+
include AlgoliaSearch
|
108
|
+
|
109
|
+
algoliasearch check_settings: false do
|
110
|
+
# Settings...
|
111
|
+
end
|
112
|
+
end
|
113
|
+
```
|
114
|
+
|
115
|
+
**Fixed**
|
116
|
+
|
117
|
+
* Handle attribute_changed? in transactions - PR [#354](https://github.com/algolia/algoliasearch-rails/pull/354)
|
118
|
+
|
119
|
+
|
120
|
+
## [1.22.0](https://github.com/algolia/algoliasearch-rails/releases/tag/1.22.0) (2019-03-21)
|
121
|
+
|
122
|
+
🚨 The documentation for our Rails integration was refreshed 🎉
|
123
|
+
https://www.algolia.com/doc/framework-integration/rails/getting-started/setup/
|
124
|
+
|
125
|
+
**Added**
|
126
|
+
|
127
|
+
* Introduce `algolia_dirty?` on models to decide if a model should be reindex.
|
128
|
+
|
129
|
+
This feature already exists via _changed? methods but might requires to implements many
|
130
|
+
methods if you have multiple dynamic attributes. Dynamic attributes are attributes not mapping
|
131
|
+
to a DB column. This feature allows you to group avoid all the _changed? method calls and
|
132
|
+
group all the logic inside one unique method.
|
133
|
+
|
134
|
+
**Fixed**
|
135
|
+
|
136
|
+
* Fix _changed? method call for Rails 5.2+ with dynamic attribute - PR [#338](https://github.com/algolia/algoliasearch-rails/pull/338)
|
137
|
+
|
138
|
+
Related issue: https://github.com/algolia/algoliasearch-rails/issues/140
|
139
|
+
Documentation: https://www.algolia.com/doc/framework-integration/rails/indexing/indexing/#automatic-updates
|
140
|
+
|
141
|
+
|
142
|
+
## [1.21.0](https://github.com/algolia/algoliasearch-rails/releases/tag/1.21.0) (2019-02-12)
|
143
|
+
|
144
|
+
**Added**
|
145
|
+
|
146
|
+
* Add `AlgoliaSearch::IndexSettings::DEFAULT_BATCH_SIZE` constant - PR [#319](https://github.com/algolia/algoliasearch-rails/pull/319)
|
147
|
+
|
148
|
+
* Support ActiveModel Serializer 🎉 - PR [#266](https://github.com/algolia/algoliasearch-rails/pull/266)
|
149
|
+
|
150
|
+
```ruby
|
151
|
+
class SerializedObject < ActiveRecord::Base
|
152
|
+
include AlgoliaSearch
|
153
|
+
|
154
|
+
algoliasearch do
|
155
|
+
|
156
|
+
use_serializer SerializedObjectSerializer
|
157
|
+
|
158
|
+
tags do
|
159
|
+
['tag1', 'tag2']
|
160
|
+
end
|
161
|
+
|
162
|
+
end
|
163
|
+
end
|
164
|
+
```
|
165
|
+
|
166
|
+
**Fixed**
|
167
|
+
|
168
|
+
* Add support for all new recent engine settings - PR [#327](https://github.com/algolia/algoliasearch-rails/pull/327)
|
169
|
+
|
170
|
+
Algolia regularly introduce new settings, all of them are supported by this gem.
|
171
|
+
|
172
|
+
2018-12-07 1.20.6
|
173
|
+
|
174
|
+
* Better support for Rails 5.1 and deprecated `attribute_changed?`
|
175
|
+
* Better support for `after_commit` for Sequel 5.0
|
176
|
+
|
177
|
+
2017-12-04 1.20.4
|
178
|
+
|
179
|
+
* Remove Bundler and RubyGems requirements
|
180
|
+
|
181
|
+
2017-11-02 1.20.2
|
182
|
+
|
183
|
+
* Upgrade algoliasearch gem to 1.17.0
|
184
|
+
|
185
|
+
2017-08-04 1.20.1
|
186
|
+
|
187
|
+
* Make sure objectIDs are manipulated as strings
|
188
|
+
|
189
|
+
2017-07-31 1.20.0
|
190
|
+
|
191
|
+
* Override the user-agent (#238)
|
192
|
+
* Fixed NPE while running mocked tests (#242)
|
193
|
+
* Add `paginationLimitedTo` setting (#243)
|
194
|
+
* Make `algolia_without_auto_index_scope` thread-safe (#234)
|
2
195
|
|
3
196
|
2017-03-13 1.19.1
|
4
197
|
|
data/Gemfile
CHANGED
@@ -1,61 +1,38 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
|
3
|
-
gem 'json', '
|
4
|
-
gem '
|
3
|
+
gem 'json', '>= 1.5.1'
|
4
|
+
gem 'algolia', '< 3.0.0'
|
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
|
13
|
-
|
14
|
-
|
15
|
-
gem '
|
16
|
-
|
17
|
-
gem '
|
18
|
-
gem 'mime-types', '< 2.6'
|
19
|
-
gem 'net-http-persistent', '< 3.0'
|
20
|
-
gem 'faraday', '< 0.10'
|
21
|
-
elsif defined?(RUBY_VERSION) && RUBY_VERSION == "1.9.3"
|
22
|
-
gem 'rack', '< 2'
|
23
|
-
gem 'nokogiri', '< 1.7.0'
|
24
|
-
if Gem::Version.new(ENV['RAILS_VERSION'] || '3.2.0') >= Gem::Version.new('4.0')
|
25
|
-
gem 'mime-types', '~> 2.6'
|
26
|
-
else
|
27
|
-
gem 'mime-types', '< 3'
|
28
|
-
end
|
29
|
-
end
|
30
|
-
if defined?(RUBY_VERSION) &&
|
31
|
-
defined?(RUBY_ENGINE) &&
|
32
|
-
RUBY_ENGINE == 'ruby' &&
|
33
|
-
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.1')
|
34
|
-
gem 'net-http-persistent', '< 3.0'
|
11
|
+
rails_version = ENV["RAILS_VERSION"] || '6.1'
|
12
|
+
gem 'rails', "~> #{rails_version}"
|
13
|
+
gem 'active_model_serializers'
|
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]
|
35
18
|
end
|
36
19
|
gem 'rspec', '>= 2.5.0', '< 3.0'
|
37
|
-
gem 'sqlite3', :platform => [:rbx, :ruby]
|
38
20
|
gem 'jdbc-sqlite3', :platform => :jruby
|
39
21
|
gem 'activerecord-jdbc-adapter', :platform => :jruby
|
40
22
|
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
|
41
23
|
gem 'redgreen'
|
42
|
-
|
24
|
+
|
25
|
+
sequel_version = ENV['SEQUEL_VERSION'] ? "~> #{ENV['SEQUEL_VERSION']}" : '>= 4.0'
|
26
|
+
gem 'sequel', sequel_version
|
43
27
|
end
|
44
28
|
|
45
29
|
group :development do
|
46
|
-
gem 'travis'
|
47
30
|
gem 'rake', '~> 10.1.0'
|
48
31
|
gem 'rdoc'
|
49
32
|
end
|
50
33
|
|
51
34
|
group :test, :development do
|
52
35
|
gem 'will_paginate', '>= 2.3.15'
|
53
|
-
|
54
|
-
defined?(RUBY_ENGINE) &&
|
55
|
-
RUBY_ENGINE == 'ruby' &&
|
56
|
-
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2')
|
57
|
-
gem 'kaminari', '< 1'
|
58
|
-
else
|
59
|
-
gem 'kaminari'
|
60
|
-
end
|
36
|
+
gem 'kaminari', '< 1'
|
61
37
|
end
|
38
|
+
|
data/Gemfile.lock
CHANGED
@@ -1,193 +1,218 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
-
actioncable (
|
5
|
-
actionpack (=
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
activejob (=
|
4
|
+
actioncable (7.0.4.2)
|
5
|
+
actionpack (= 7.0.4.2)
|
6
|
+
activesupport (= 7.0.4.2)
|
7
|
+
nio4r (~> 2.0)
|
8
|
+
websocket-driver (>= 0.6.1)
|
9
|
+
actionmailbox (7.0.4.2)
|
10
|
+
actionpack (= 7.0.4.2)
|
11
|
+
activejob (= 7.0.4.2)
|
12
|
+
activerecord (= 7.0.4.2)
|
13
|
+
activestorage (= 7.0.4.2)
|
14
|
+
activesupport (= 7.0.4.2)
|
15
|
+
mail (>= 2.7.1)
|
16
|
+
net-imap
|
17
|
+
net-pop
|
18
|
+
net-smtp
|
19
|
+
actionmailer (7.0.4.2)
|
20
|
+
actionpack (= 7.0.4.2)
|
21
|
+
actionview (= 7.0.4.2)
|
22
|
+
activejob (= 7.0.4.2)
|
23
|
+
activesupport (= 7.0.4.2)
|
12
24
|
mail (~> 2.5, >= 2.5.4)
|
25
|
+
net-imap
|
26
|
+
net-pop
|
27
|
+
net-smtp
|
13
28
|
rails-dom-testing (~> 2.0)
|
14
|
-
actionpack (
|
15
|
-
actionview (=
|
16
|
-
activesupport (=
|
17
|
-
rack (~> 2.0)
|
18
|
-
rack-test (
|
29
|
+
actionpack (7.0.4.2)
|
30
|
+
actionview (= 7.0.4.2)
|
31
|
+
activesupport (= 7.0.4.2)
|
32
|
+
rack (~> 2.0, >= 2.2.0)
|
33
|
+
rack-test (>= 0.6.3)
|
19
34
|
rails-dom-testing (~> 2.0)
|
20
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
21
|
-
|
22
|
-
|
35
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
+
actiontext (7.0.4.2)
|
37
|
+
actionpack (= 7.0.4.2)
|
38
|
+
activerecord (= 7.0.4.2)
|
39
|
+
activestorage (= 7.0.4.2)
|
40
|
+
activesupport (= 7.0.4.2)
|
41
|
+
globalid (>= 0.6.0)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (7.0.4.2)
|
44
|
+
activesupport (= 7.0.4.2)
|
23
45
|
builder (~> 3.1)
|
24
|
-
|
46
|
+
erubi (~> 1.4)
|
25
47
|
rails-dom-testing (~> 2.0)
|
26
|
-
rails-html-sanitizer (~> 1.
|
27
|
-
|
28
|
-
|
48
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
+
active_model_serializers (0.10.13)
|
50
|
+
actionpack (>= 4.1, < 7.1)
|
51
|
+
activemodel (>= 4.1, < 7.1)
|
52
|
+
case_transform (>= 0.2)
|
53
|
+
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
|
54
|
+
activejob (7.0.4.2)
|
55
|
+
activesupport (= 7.0.4.2)
|
29
56
|
globalid (>= 0.3.6)
|
30
|
-
activemodel (
|
31
|
-
activesupport (=
|
32
|
-
activerecord (
|
33
|
-
activemodel (=
|
34
|
-
activesupport (=
|
35
|
-
|
36
|
-
|
57
|
+
activemodel (7.0.4.2)
|
58
|
+
activesupport (= 7.0.4.2)
|
59
|
+
activerecord (7.0.4.2)
|
60
|
+
activemodel (= 7.0.4.2)
|
61
|
+
activesupport (= 7.0.4.2)
|
62
|
+
activestorage (7.0.4.2)
|
63
|
+
actionpack (= 7.0.4.2)
|
64
|
+
activejob (= 7.0.4.2)
|
65
|
+
activerecord (= 7.0.4.2)
|
66
|
+
activesupport (= 7.0.4.2)
|
67
|
+
marcel (~> 1.0)
|
68
|
+
mini_mime (>= 1.1.0)
|
69
|
+
activesupport (7.0.4.2)
|
37
70
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
38
|
-
i18n (
|
39
|
-
minitest (
|
40
|
-
tzinfo (~>
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
json (>= 1.5.1)
|
45
|
-
arel (7.1.4)
|
46
|
-
backports (3.6.8)
|
47
|
-
builder (3.2.3)
|
48
|
-
concurrent-ruby (1.0.5)
|
49
|
-
diff-lcs (1.3)
|
50
|
-
erubis (2.7.0)
|
51
|
-
ethon (0.10.1)
|
52
|
-
ffi (>= 1.3.0)
|
53
|
-
faraday (0.11.0)
|
54
|
-
multipart-post (>= 1.2, < 3)
|
55
|
-
faraday_middleware (0.11.0.1)
|
56
|
-
faraday (>= 0.7.4, < 1.0)
|
57
|
-
ffi (1.9.18)
|
58
|
-
gh (0.15.0)
|
59
|
-
addressable (~> 2.4.0)
|
60
|
-
backports
|
61
|
-
faraday (~> 0.8)
|
71
|
+
i18n (>= 1.6, < 2)
|
72
|
+
minitest (>= 5.1)
|
73
|
+
tzinfo (~> 2.0)
|
74
|
+
algolia (2.3.1)
|
75
|
+
faraday (>= 0.15, < 3)
|
76
|
+
faraday-net_http_persistent (>= 0.15, < 3)
|
62
77
|
multi_json (~> 1.0)
|
63
|
-
net-http-persistent
|
64
|
-
|
65
|
-
|
66
|
-
activesupport
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
78
|
+
net-http-persistent
|
79
|
+
builder (3.2.4)
|
80
|
+
case_transform (0.2)
|
81
|
+
activesupport
|
82
|
+
concurrent-ruby (1.2.0)
|
83
|
+
connection_pool (2.3.0)
|
84
|
+
crass (1.0.6)
|
85
|
+
date (3.3.3)
|
86
|
+
diff-lcs (1.5.0)
|
87
|
+
erubi (1.12.0)
|
88
|
+
faraday (2.7.4)
|
89
|
+
faraday-net_http (>= 2.0, < 3.1)
|
90
|
+
ruby2_keywords (>= 0.0.4)
|
91
|
+
faraday-net_http (3.0.2)
|
92
|
+
faraday-net_http_persistent (2.1.0)
|
93
|
+
faraday (~> 2.5)
|
94
|
+
net-http-persistent (~> 4.0)
|
95
|
+
globalid (1.1.0)
|
96
|
+
activesupport (>= 5.0)
|
97
|
+
i18n (1.12.0)
|
98
|
+
concurrent-ruby (~> 1.0)
|
99
|
+
json (2.6.3)
|
100
|
+
jsonapi-renderer (0.2.2)
|
101
|
+
kaminari (0.17.0)
|
102
|
+
actionpack (>= 3.0.0)
|
103
|
+
activesupport (>= 3.0.0)
|
104
|
+
loofah (2.19.1)
|
105
|
+
crass (~> 1.0.2)
|
86
106
|
nokogiri (>= 1.5.9)
|
87
|
-
mail (2.
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
net-http-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
107
|
+
mail (2.8.1)
|
108
|
+
mini_mime (>= 0.1.1)
|
109
|
+
net-imap
|
110
|
+
net-pop
|
111
|
+
net-smtp
|
112
|
+
marcel (1.0.2)
|
113
|
+
method_source (1.0.0)
|
114
|
+
mini_mime (1.1.2)
|
115
|
+
mini_portile2 (2.8.1)
|
116
|
+
minitest (5.17.0)
|
117
|
+
multi_json (1.15.0)
|
118
|
+
net-http-persistent (4.0.1)
|
119
|
+
connection_pool (~> 2.2)
|
120
|
+
net-imap (0.3.4)
|
121
|
+
date
|
122
|
+
net-protocol
|
123
|
+
net-pop (0.1.2)
|
124
|
+
net-protocol
|
125
|
+
net-protocol (0.2.1)
|
126
|
+
timeout
|
127
|
+
net-smtp (0.3.3)
|
128
|
+
net-protocol
|
129
|
+
nio4r (2.5.8)
|
130
|
+
nokogiri (1.14.2)
|
131
|
+
mini_portile2 (~> 2.8.0)
|
132
|
+
racc (~> 1.4)
|
133
|
+
psych (5.1.0)
|
134
|
+
stringio
|
135
|
+
racc (1.6.2)
|
136
|
+
rack (2.2.6.2)
|
137
|
+
rack-test (2.0.2)
|
138
|
+
rack (>= 1.3)
|
139
|
+
rails (7.0.4.2)
|
140
|
+
actioncable (= 7.0.4.2)
|
141
|
+
actionmailbox (= 7.0.4.2)
|
142
|
+
actionmailer (= 7.0.4.2)
|
143
|
+
actionpack (= 7.0.4.2)
|
144
|
+
actiontext (= 7.0.4.2)
|
145
|
+
actionview (= 7.0.4.2)
|
146
|
+
activejob (= 7.0.4.2)
|
147
|
+
activemodel (= 7.0.4.2)
|
148
|
+
activerecord (= 7.0.4.2)
|
149
|
+
activestorage (= 7.0.4.2)
|
150
|
+
activesupport (= 7.0.4.2)
|
151
|
+
bundler (>= 1.15.0)
|
152
|
+
railties (= 7.0.4.2)
|
153
|
+
rails-dom-testing (2.0.3)
|
154
|
+
activesupport (>= 4.2.0)
|
155
|
+
nokogiri (>= 1.6)
|
156
|
+
rails-html-sanitizer (1.5.0)
|
157
|
+
loofah (~> 2.19, >= 2.19.1)
|
158
|
+
railties (7.0.4.2)
|
159
|
+
actionpack (= 7.0.4.2)
|
160
|
+
activesupport (= 7.0.4.2)
|
128
161
|
method_source
|
129
|
-
rake (>=
|
130
|
-
thor (
|
131
|
-
|
132
|
-
|
162
|
+
rake (>= 12.2)
|
163
|
+
thor (~> 1.0)
|
164
|
+
zeitwerk (~> 2.5)
|
165
|
+
rake (12.3.3)
|
166
|
+
rdoc (6.5.0)
|
167
|
+
psych (>= 4.0.0)
|
133
168
|
redgreen (1.2.2)
|
134
|
-
rspec (
|
135
|
-
rspec-core (~>
|
136
|
-
rspec-expectations (~>
|
137
|
-
rspec-mocks (~>
|
138
|
-
rspec-core (
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
169
|
+
rspec (3.12.0)
|
170
|
+
rspec-core (~> 3.12.0)
|
171
|
+
rspec-expectations (~> 3.12.0)
|
172
|
+
rspec-mocks (~> 3.12.0)
|
173
|
+
rspec-core (3.12.1)
|
174
|
+
rspec-support (~> 3.12.0)
|
175
|
+
rspec-expectations (3.12.2)
|
176
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
177
|
+
rspec-support (~> 3.12.0)
|
178
|
+
rspec-mocks (3.12.3)
|
179
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
180
|
+
rspec-support (~> 3.12.0)
|
181
|
+
rspec-support (3.12.0)
|
182
|
+
ruby2_keywords (0.0.5)
|
183
|
+
sequel (5.65.0)
|
184
|
+
sqlite3 (1.4.4)
|
185
|
+
stringio (3.0.5)
|
186
|
+
thor (1.2.1)
|
187
|
+
timeout (0.3.2)
|
188
|
+
tzinfo (2.0.6)
|
144
189
|
concurrent-ruby (~> 1.0)
|
145
|
-
|
146
|
-
sprockets-rails (3.2.0)
|
147
|
-
actionpack (>= 4.0)
|
148
|
-
activesupport (>= 4.0)
|
149
|
-
sprockets (>= 3.0.0)
|
150
|
-
sqlite3 (1.3.13)
|
151
|
-
thor (0.19.4)
|
152
|
-
thread_safe (0.3.6)
|
153
|
-
travis (1.8.8)
|
154
|
-
backports
|
155
|
-
faraday (~> 0.9)
|
156
|
-
faraday_middleware (~> 0.9, >= 0.9.1)
|
157
|
-
gh (~> 0.13)
|
158
|
-
highline (~> 1.6)
|
159
|
-
launchy (~> 2.1)
|
160
|
-
pusher-client (~> 0.4)
|
161
|
-
typhoeus (~> 0.6, >= 0.6.8)
|
162
|
-
typhoeus (0.8.0)
|
163
|
-
ethon (>= 0.8.0)
|
164
|
-
tzinfo (1.2.2)
|
165
|
-
thread_safe (~> 0.1)
|
166
|
-
websocket (1.2.4)
|
167
|
-
websocket-driver (0.6.5)
|
190
|
+
websocket-driver (0.7.5)
|
168
191
|
websocket-extensions (>= 0.1.0)
|
169
|
-
websocket-extensions (0.1.
|
170
|
-
will_paginate (3.1
|
192
|
+
websocket-extensions (0.1.5)
|
193
|
+
will_paginate (3.3.1)
|
194
|
+
zeitwerk (2.6.7)
|
171
195
|
|
172
196
|
PLATFORMS
|
173
197
|
ruby
|
174
198
|
|
175
199
|
DEPENDENCIES
|
200
|
+
active_model_serializers
|
176
201
|
activerecord-jdbc-adapter
|
177
202
|
activerecord-jdbcsqlite3-adapter
|
178
|
-
|
203
|
+
algolia (< 3.0.0)
|
179
204
|
jdbc-sqlite3
|
180
|
-
json (
|
181
|
-
kaminari
|
182
|
-
rails (
|
183
|
-
|
205
|
+
json (>= 1.5.1)
|
206
|
+
kaminari (< 1)
|
207
|
+
rails (~> 7.0)
|
208
|
+
rails-html-sanitizer
|
209
|
+
rake (~> 12.2)
|
184
210
|
rdoc
|
185
211
|
redgreen
|
186
|
-
rspec (
|
187
|
-
sequel
|
188
|
-
sqlite3
|
189
|
-
travis
|
212
|
+
rspec (~> 3.0)
|
213
|
+
sequel (~> 5.0)
|
214
|
+
sqlite3 (~> 1.4.0)
|
190
215
|
will_paginate (>= 2.3.15)
|
191
216
|
|
192
217
|
BUNDLED WITH
|
193
|
-
1.
|
218
|
+
2.1.4
|