chewy 0.9.0 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +214 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +41 -19
- data/.rubocop_todo.yml +2 -2
- data/.yardopts +5 -0
- data/Appraisals +58 -28
- data/CHANGELOG.md +153 -12
- data/Gemfile +20 -12
- data/LEGACY_DSL.md +497 -0
- data/LICENSE.txt +1 -1
- data/README.md +338 -528
- data/chewy.gemspec +11 -12
- data/gemfiles/rails.5.2.activerecord.gemfile +17 -0
- data/gemfiles/rails.5.2.mongoid.6.4.gemfile +17 -0
- data/gemfiles/rails.6.0.activerecord.gemfile +17 -0
- data/gemfiles/rails.6.1.activerecord.gemfile +19 -0
- data/gemfiles/ruby3.gemfile +10 -0
- data/gemfiles/sequel.4.45.gemfile +11 -0
- data/lib/chewy.rb +79 -44
- data/lib/chewy/backports/duplicable.rb +1 -1
- data/lib/chewy/config.rb +43 -17
- data/lib/chewy/errors.rb +2 -2
- data/lib/chewy/fields/base.rb +56 -31
- data/lib/chewy/fields/root.rb +44 -11
- data/lib/chewy/index.rb +237 -149
- data/lib/chewy/index/actions.rb +100 -35
- data/lib/chewy/index/aliases.rb +2 -1
- data/lib/chewy/index/settings.rb +11 -5
- data/lib/chewy/index/specification.rb +60 -0
- data/lib/chewy/journal.rb +40 -92
- data/lib/chewy/minitest/helpers.rb +6 -6
- data/lib/chewy/minitest/search_index_receiver.rb +17 -17
- data/lib/chewy/query.rb +182 -122
- data/lib/chewy/query/compose.rb +13 -13
- data/lib/chewy/query/criteria.rb +13 -13
- data/lib/chewy/query/filters.rb +21 -4
- data/lib/chewy/query/loading.rb +1 -2
- data/lib/chewy/query/nodes/and.rb +2 -2
- data/lib/chewy/query/nodes/bool.rb +1 -1
- data/lib/chewy/query/nodes/equal.rb +2 -2
- data/lib/chewy/query/nodes/exists.rb +1 -1
- data/lib/chewy/query/nodes/field.rb +1 -1
- data/lib/chewy/query/nodes/has_relation.rb +2 -2
- data/lib/chewy/query/nodes/match_all.rb +1 -1
- data/lib/chewy/query/nodes/missing.rb +1 -1
- data/lib/chewy/query/nodes/not.rb +2 -2
- data/lib/chewy/query/nodes/or.rb +2 -2
- data/lib/chewy/query/nodes/prefix.rb +1 -1
- data/lib/chewy/query/nodes/query.rb +2 -2
- data/lib/chewy/query/nodes/range.rb +4 -4
- data/lib/chewy/query/nodes/regexp.rb +4 -4
- data/lib/chewy/query/nodes/script.rb +3 -3
- data/lib/chewy/query/pagination.rb +10 -1
- data/lib/chewy/railtie.rb +4 -3
- data/lib/chewy/rake_helper.rb +265 -48
- data/lib/chewy/rspec/update_index.rb +33 -27
- data/lib/chewy/search.rb +79 -26
- data/lib/chewy/search/loader.rb +83 -0
- data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
- data/lib/chewy/search/pagination/will_paginate.rb +43 -0
- data/lib/chewy/search/parameters.rb +168 -0
- data/lib/chewy/search/parameters/aggs.rb +16 -0
- data/lib/chewy/search/parameters/allow_partial_search_results.rb +27 -0
- data/lib/chewy/search/parameters/concerns/bool_storage.rb +24 -0
- data/lib/chewy/search/parameters/concerns/hash_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/integer_storage.rb +14 -0
- data/lib/chewy/search/parameters/concerns/query_storage.rb +238 -0
- data/lib/chewy/search/parameters/concerns/string_array_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/string_storage.rb +14 -0
- data/lib/chewy/search/parameters/docvalue_fields.rb +12 -0
- data/lib/chewy/search/parameters/explain.rb +16 -0
- data/lib/chewy/search/parameters/filter.rb +47 -0
- data/lib/chewy/search/parameters/highlight.rb +16 -0
- data/lib/chewy/search/parameters/indices.rb +123 -0
- data/lib/chewy/search/parameters/indices_boost.rb +52 -0
- data/lib/chewy/search/parameters/limit.rb +17 -0
- data/lib/chewy/search/parameters/load.rb +32 -0
- data/lib/chewy/search/parameters/min_score.rb +16 -0
- data/lib/chewy/search/parameters/none.rb +27 -0
- data/lib/chewy/search/parameters/offset.rb +17 -0
- data/lib/chewy/search/parameters/order.rb +64 -0
- data/lib/chewy/search/parameters/post_filter.rb +19 -0
- data/lib/chewy/search/parameters/preference.rb +16 -0
- data/lib/chewy/search/parameters/profile.rb +16 -0
- data/lib/chewy/search/parameters/query.rb +19 -0
- data/lib/chewy/search/parameters/request_cache.rb +27 -0
- data/lib/chewy/search/parameters/rescore.rb +29 -0
- data/lib/chewy/search/parameters/script_fields.rb +16 -0
- data/lib/chewy/search/parameters/search_after.rb +20 -0
- data/lib/chewy/search/parameters/search_type.rb +16 -0
- data/lib/chewy/search/parameters/source.rb +73 -0
- data/lib/chewy/search/parameters/storage.rb +95 -0
- data/lib/chewy/search/parameters/stored_fields.rb +63 -0
- data/lib/chewy/search/parameters/suggest.rb +16 -0
- data/lib/chewy/search/parameters/terminate_after.rb +16 -0
- data/lib/chewy/search/parameters/timeout.rb +16 -0
- data/lib/chewy/search/parameters/track_scores.rb +16 -0
- data/lib/chewy/search/parameters/types.rb +20 -0
- data/lib/chewy/search/parameters/version.rb +16 -0
- data/lib/chewy/search/query_proxy.rb +257 -0
- data/lib/chewy/search/request.rb +1046 -0
- data/lib/chewy/search/response.rb +119 -0
- data/lib/chewy/search/scoping.rb +50 -0
- data/lib/chewy/search/scrolling.rb +134 -0
- data/lib/chewy/stash.rb +79 -0
- data/lib/chewy/strategy.rb +10 -3
- data/lib/chewy/strategy/active_job.rb +2 -1
- data/lib/chewy/strategy/atomic.rb +2 -4
- data/lib/chewy/strategy/bypass.rb +1 -1
- data/lib/chewy/strategy/resque.rb +1 -0
- data/lib/chewy/strategy/shoryuken.rb +40 -0
- data/lib/chewy/strategy/sidekiq.rb +13 -3
- data/lib/chewy/type.rb +29 -7
- data/lib/chewy/type/actions.rb +26 -2
- data/lib/chewy/type/adapter/active_record.rb +44 -29
- data/lib/chewy/type/adapter/base.rb +27 -7
- data/lib/chewy/type/adapter/mongoid.rb +19 -10
- data/lib/chewy/type/adapter/object.rb +187 -26
- data/lib/chewy/type/adapter/orm.rb +59 -32
- data/lib/chewy/type/adapter/sequel.rb +33 -19
- data/lib/chewy/type/crutch.rb +1 -1
- data/lib/chewy/type/import.rb +146 -191
- data/lib/chewy/type/import/bulk_builder.rb +122 -0
- data/lib/chewy/type/import/bulk_request.rb +78 -0
- data/lib/chewy/type/import/journal_builder.rb +45 -0
- data/lib/chewy/type/import/routine.rb +138 -0
- data/lib/chewy/type/mapping.rb +51 -35
- data/lib/chewy/type/observe.rb +17 -13
- data/lib/chewy/type/syncer.rb +222 -0
- data/lib/chewy/type/witchcraft.rb +32 -16
- data/lib/chewy/type/wrapper.rb +30 -4
- data/lib/chewy/version.rb +1 -1
- data/lib/sequel/plugins/chewy_observe.rb +4 -19
- data/lib/tasks/chewy.rake +84 -26
- data/spec/chewy/config_spec.rb +98 -1
- data/spec/chewy/fields/base_spec.rb +170 -135
- data/spec/chewy/fields/root_spec.rb +124 -20
- data/spec/chewy/fields/time_fields_spec.rb +2 -3
- data/spec/chewy/index/actions_spec.rb +214 -52
- data/spec/chewy/index/aliases_spec.rb +2 -2
- data/spec/chewy/index/settings_spec.rb +67 -38
- data/spec/chewy/index/specification_spec.rb +169 -0
- data/spec/chewy/index_spec.rb +108 -64
- data/spec/chewy/journal_spec.rb +150 -55
- data/spec/chewy/minitest/helpers_spec.rb +4 -4
- data/spec/chewy/minitest/search_index_receiver_spec.rb +1 -1
- data/spec/chewy/query/criteria_spec.rb +179 -179
- data/spec/chewy/query/filters_spec.rb +16 -16
- data/spec/chewy/query/loading_spec.rb +22 -20
- data/spec/chewy/query/nodes/and_spec.rb +2 -2
- data/spec/chewy/query/nodes/bool_spec.rb +4 -4
- data/spec/chewy/query/nodes/equal_spec.rb +19 -19
- data/spec/chewy/query/nodes/exists_spec.rb +6 -6
- data/spec/chewy/query/nodes/has_child_spec.rb +19 -19
- data/spec/chewy/query/nodes/has_parent_spec.rb +19 -19
- data/spec/chewy/query/nodes/missing_spec.rb +5 -5
- data/spec/chewy/query/nodes/not_spec.rb +4 -2
- data/spec/chewy/query/nodes/or_spec.rb +2 -2
- data/spec/chewy/query/nodes/prefix_spec.rb +5 -5
- data/spec/chewy/query/nodes/query_spec.rb +2 -2
- data/spec/chewy/query/nodes/range_spec.rb +18 -18
- data/spec/chewy/query/nodes/raw_spec.rb +1 -1
- data/spec/chewy/query/nodes/regexp_spec.rb +14 -14
- data/spec/chewy/query/nodes/script_spec.rb +4 -4
- data/spec/chewy/query/pagination/kaminari_spec.rb +3 -55
- data/spec/chewy/query/pagination/will_paginate_spec.rb +5 -0
- data/spec/chewy/query/pagination_spec.rb +25 -21
- data/spec/chewy/query_spec.rb +503 -561
- data/spec/chewy/rake_helper_spec.rb +381 -0
- data/spec/chewy/repository_spec.rb +4 -4
- data/spec/chewy/rspec/update_index_spec.rb +89 -56
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +117 -0
- data/spec/chewy/search/pagination/kaminari_examples.rb +71 -0
- data/spec/chewy/search/pagination/kaminari_spec.rb +21 -0
- data/spec/chewy/search/pagination/will_paginate_examples.rb +63 -0
- data/spec/chewy/search/pagination/will_paginate_spec.rb +23 -0
- data/spec/chewy/search/parameters/aggs_spec.rb +5 -0
- data/spec/chewy/search/parameters/bool_storage_examples.rb +53 -0
- data/spec/chewy/search/parameters/docvalue_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/explain_spec.rb +5 -0
- data/spec/chewy/search/parameters/filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/hash_storage_examples.rb +59 -0
- data/spec/chewy/search/parameters/highlight_spec.rb +5 -0
- data/spec/chewy/search/parameters/indices_spec.rb +191 -0
- data/spec/chewy/search/parameters/integer_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/limit_spec.rb +5 -0
- data/spec/chewy/search/parameters/load_spec.rb +60 -0
- data/spec/chewy/search/parameters/min_score_spec.rb +32 -0
- data/spec/chewy/search/parameters/none_spec.rb +5 -0
- data/spec/chewy/search/parameters/offset_spec.rb +5 -0
- data/spec/chewy/search/parameters/order_spec.rb +65 -0
- data/spec/chewy/search/parameters/post_filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/preference_spec.rb +5 -0
- data/spec/chewy/search/parameters/profile_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_storage_examples.rb +388 -0
- data/spec/chewy/search/parameters/request_cache_spec.rb +67 -0
- data/spec/chewy/search/parameters/rescore_spec.rb +62 -0
- data/spec/chewy/search/parameters/script_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/search_after_spec.rb +32 -0
- data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
- data/spec/chewy/search/parameters/source_spec.rb +156 -0
- data/spec/chewy/search/parameters/storage_spec.rb +60 -0
- data/spec/chewy/search/parameters/stored_fields_spec.rb +126 -0
- data/spec/chewy/search/parameters/string_array_storage_examples.rb +63 -0
- data/spec/chewy/search/parameters/string_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/suggest_spec.rb +5 -0
- data/spec/chewy/search/parameters/terminate_after_spec.rb +5 -0
- data/spec/chewy/search/parameters/timeout_spec.rb +5 -0
- data/spec/chewy/search/parameters/track_scores_spec.rb +5 -0
- data/spec/chewy/search/parameters/types_spec.rb +5 -0
- data/spec/chewy/search/parameters/version_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +147 -0
- data/spec/chewy/search/query_proxy_spec.rb +68 -0
- data/spec/chewy/search/request_spec.rb +685 -0
- data/spec/chewy/search/response_spec.rb +198 -0
- data/spec/chewy/search/scrolling_spec.rb +169 -0
- data/spec/chewy/search_spec.rb +33 -16
- data/spec/chewy/stash_spec.rb +95 -0
- data/spec/chewy/strategy/active_job_spec.rb +21 -2
- data/spec/chewy/strategy/resque_spec.rb +6 -0
- data/spec/chewy/strategy/shoryuken_spec.rb +70 -0
- data/spec/chewy/strategy/sidekiq_spec.rb +13 -1
- data/spec/chewy/strategy_spec.rb +6 -6
- data/spec/chewy/type/actions_spec.rb +29 -10
- data/spec/chewy/type/adapter/active_record_spec.rb +203 -91
- data/spec/chewy/type/adapter/mongoid_spec.rb +112 -54
- data/spec/chewy/type/adapter/object_spec.rb +101 -28
- data/spec/chewy/type/adapter/sequel_spec.rb +149 -82
- data/spec/chewy/type/import/bulk_builder_spec.rb +279 -0
- data/spec/chewy/type/import/bulk_request_spec.rb +102 -0
- data/spec/chewy/type/import/journal_builder_spec.rb +95 -0
- data/spec/chewy/type/import/routine_spec.rb +110 -0
- data/spec/chewy/type/import_spec.rb +356 -271
- data/spec/chewy/type/mapping_spec.rb +96 -29
- data/spec/chewy/type/observe_spec.rb +9 -5
- data/spec/chewy/type/syncer_spec.rb +123 -0
- data/spec/chewy/type/witchcraft_spec.rb +61 -29
- data/spec/chewy/type/wrapper_spec.rb +63 -23
- data/spec/chewy/type_spec.rb +28 -7
- data/spec/chewy_spec.rb +75 -7
- data/spec/spec_helper.rb +17 -3
- data/spec/support/active_record.rb +5 -1
- data/spec/support/class_helpers.rb +0 -14
- data/spec/support/mongoid.rb +15 -3
- data/spec/support/sequel.rb +6 -1
- metadata +219 -58
- data/.travis.yml +0 -36
- data/gemfiles/rails.3.2.activerecord.gemfile +0 -16
- data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -15
- data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.activerecord.gemfile +0 -17
- data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.4.0.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.4.0.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.5.1.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.will_paginate.gemfile +0 -15
- data/gemfiles/rails.5.0.activerecord.gemfile +0 -17
- data/gemfiles/rails.5.0.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.5.0.activerecord.will_paginate.gemfile +0 -16
- data/gemfiles/sequel.4.38.gemfile +0 -14
- data/lib/chewy/journal/apply.rb +0 -31
- data/lib/chewy/journal/clean.rb +0 -24
- data/lib/chewy/journal/entry.rb +0 -83
- data/lib/chewy/journal/query.rb +0 -87
- data/lib/chewy/query/pagination/will_paginate.rb +0 -27
- data/lib/chewy/query/scoping.rb +0 -20
- data/spec/chewy/journal/apply_spec.rb +0 -120
- data/spec/chewy/journal/entry_spec.rb +0 -237
- data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -59
metadata
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chewy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
+
- Toptal, LLC
|
7
8
|
- pyromaniac
|
8
|
-
autorequire:
|
9
|
+
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2021-01-28 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
15
|
+
name: appraisal
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
18
|
- - ">="
|
@@ -25,7 +26,7 @@ dependencies:
|
|
25
26
|
- !ruby/object:Gem::Version
|
26
27
|
version: '0'
|
27
28
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
29
|
+
name: database_cleaner
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
30
31
|
requirements:
|
31
32
|
- - ">="
|
@@ -39,7 +40,7 @@ dependencies:
|
|
39
40
|
- !ruby/object:Gem::Version
|
40
41
|
version: '0'
|
41
42
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
43
|
+
name: elasticsearch-extensions
|
43
44
|
requirement: !ruby/object:Gem::Requirement
|
44
45
|
requirements:
|
45
46
|
- - ">="
|
@@ -53,7 +54,7 @@ dependencies:
|
|
53
54
|
- !ruby/object:Gem::Version
|
54
55
|
version: '0'
|
55
56
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
57
|
+
name: rake
|
57
58
|
requirement: !ruby/object:Gem::Requirement
|
58
59
|
requirements:
|
59
60
|
- - ">="
|
@@ -67,7 +68,7 @@ dependencies:
|
|
67
68
|
- !ruby/object:Gem::Version
|
68
69
|
version: '0'
|
69
70
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
71
|
+
name: resque_spec
|
71
72
|
requirement: !ruby/object:Gem::Requirement
|
72
73
|
requirements:
|
73
74
|
- - ">="
|
@@ -81,21 +82,21 @@ dependencies:
|
|
81
82
|
- !ruby/object:Gem::Version
|
82
83
|
version: '0'
|
83
84
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
85
|
+
name: rspec
|
85
86
|
requirement: !ruby/object:Gem::Requirement
|
86
87
|
requirements:
|
87
88
|
- - ">="
|
88
89
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
90
|
+
version: 3.7.0
|
90
91
|
type: :development
|
91
92
|
prerelease: false
|
92
93
|
version_requirements: !ruby/object:Gem::Requirement
|
93
94
|
requirements:
|
94
95
|
- - ">="
|
95
96
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
97
|
+
version: 3.7.0
|
97
98
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
99
|
+
name: rspec-collection_matchers
|
99
100
|
requirement: !ruby/object:Gem::Requirement
|
100
101
|
requirements:
|
101
102
|
- - ">="
|
@@ -109,7 +110,7 @@ dependencies:
|
|
109
110
|
- !ruby/object:Gem::Version
|
110
111
|
version: '0'
|
111
112
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
113
|
+
name: rspec-its
|
113
114
|
requirement: !ruby/object:Gem::Requirement
|
114
115
|
requirements:
|
115
116
|
- - ">="
|
@@ -123,21 +124,21 @@ dependencies:
|
|
123
124
|
- !ruby/object:Gem::Version
|
124
125
|
version: '0'
|
125
126
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
127
|
+
name: rubocop
|
127
128
|
requirement: !ruby/object:Gem::Requirement
|
128
129
|
requirements:
|
129
|
-
- -
|
130
|
+
- - '='
|
130
131
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
132
|
+
version: 0.52.1
|
132
133
|
type: :development
|
133
134
|
prerelease: false
|
134
135
|
version_requirements: !ruby/object:Gem::Requirement
|
135
136
|
requirements:
|
136
|
-
- -
|
137
|
+
- - '='
|
137
138
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
139
|
+
version: 0.52.1
|
139
140
|
- !ruby/object:Gem::Dependency
|
140
|
-
name:
|
141
|
+
name: sqlite3
|
141
142
|
requirement: !ruby/object:Gem::Requirement
|
142
143
|
requirements:
|
143
144
|
- - ">="
|
@@ -151,7 +152,7 @@ dependencies:
|
|
151
152
|
- !ruby/object:Gem::Version
|
152
153
|
version: '0'
|
153
154
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
155
|
+
name: timecop
|
155
156
|
requirement: !ruby/object:Gem::Requirement
|
156
157
|
requirements:
|
157
158
|
- - ">="
|
@@ -198,66 +199,73 @@ dependencies:
|
|
198
199
|
requirements:
|
199
200
|
- - ">="
|
200
201
|
- !ruby/object:Gem::Version
|
201
|
-
version: '
|
202
|
+
version: '5.2'
|
202
203
|
type: :runtime
|
203
204
|
prerelease: false
|
204
205
|
version_requirements: !ruby/object:Gem::Requirement
|
205
206
|
requirements:
|
206
207
|
- - ">="
|
207
208
|
- !ruby/object:Gem::Version
|
208
|
-
version: '
|
209
|
+
version: '5.2'
|
209
210
|
- !ruby/object:Gem::Dependency
|
210
211
|
name: elasticsearch
|
211
212
|
requirement: !ruby/object:Gem::Requirement
|
212
213
|
requirements:
|
213
214
|
- - ">="
|
214
215
|
- !ruby/object:Gem::Version
|
215
|
-
version:
|
216
|
+
version: 2.0.0
|
217
|
+
type: :runtime
|
218
|
+
prerelease: false
|
219
|
+
version_requirements: !ruby/object:Gem::Requirement
|
220
|
+
requirements:
|
221
|
+
- - ">="
|
222
|
+
- !ruby/object:Gem::Version
|
223
|
+
version: 2.0.0
|
224
|
+
- !ruby/object:Gem::Dependency
|
225
|
+
name: elasticsearch-dsl
|
226
|
+
requirement: !ruby/object:Gem::Requirement
|
227
|
+
requirements:
|
228
|
+
- - ">="
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: '0'
|
216
231
|
type: :runtime
|
217
232
|
prerelease: false
|
218
233
|
version_requirements: !ruby/object:Gem::Requirement
|
219
234
|
requirements:
|
220
235
|
- - ">="
|
221
236
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
237
|
+
version: '0'
|
223
238
|
description: Chewy provides functionality for Elasticsearch index handling, documents
|
224
239
|
import mappings and chainable query DSL
|
225
240
|
email:
|
241
|
+
- open-source@toptal.com
|
226
242
|
- kinwizard@gmail.com
|
227
243
|
executables: []
|
228
244
|
extensions: []
|
229
245
|
extra_rdoc_files: []
|
230
246
|
files:
|
247
|
+
- ".circleci/config.yml"
|
231
248
|
- ".gitignore"
|
232
249
|
- ".rspec"
|
233
250
|
- ".rubocop.yml"
|
234
251
|
- ".rubocop_todo.yml"
|
235
|
-
- ".
|
252
|
+
- ".yardopts"
|
236
253
|
- Appraisals
|
237
254
|
- CHANGELOG.md
|
238
255
|
- Gemfile
|
239
256
|
- Guardfile
|
257
|
+
- LEGACY_DSL.md
|
240
258
|
- LICENSE.txt
|
241
259
|
- README.md
|
242
260
|
- Rakefile
|
243
261
|
- chewy.gemspec
|
244
262
|
- filters
|
245
|
-
- gemfiles/rails.
|
246
|
-
- gemfiles/rails.
|
247
|
-
- gemfiles/rails.
|
248
|
-
- gemfiles/rails.
|
249
|
-
- gemfiles/
|
250
|
-
- gemfiles/
|
251
|
-
- gemfiles/rails.4.2.mongoid.4.0.gemfile
|
252
|
-
- gemfiles/rails.4.2.mongoid.4.0.kaminari.gemfile
|
253
|
-
- gemfiles/rails.4.2.mongoid.4.0.will_paginate.gemfile
|
254
|
-
- gemfiles/rails.4.2.mongoid.5.1.gemfile
|
255
|
-
- gemfiles/rails.4.2.mongoid.5.1.kaminari.gemfile
|
256
|
-
- gemfiles/rails.4.2.mongoid.5.1.will_paginate.gemfile
|
257
|
-
- gemfiles/rails.5.0.activerecord.gemfile
|
258
|
-
- gemfiles/rails.5.0.activerecord.kaminari.gemfile
|
259
|
-
- gemfiles/rails.5.0.activerecord.will_paginate.gemfile
|
260
|
-
- gemfiles/sequel.4.38.gemfile
|
263
|
+
- gemfiles/rails.5.2.activerecord.gemfile
|
264
|
+
- gemfiles/rails.5.2.mongoid.6.4.gemfile
|
265
|
+
- gemfiles/rails.6.0.activerecord.gemfile
|
266
|
+
- gemfiles/rails.6.1.activerecord.gemfile
|
267
|
+
- gemfiles/ruby3.gemfile
|
268
|
+
- gemfiles/sequel.4.45.gemfile
|
261
269
|
- lib/chewy.rb
|
262
270
|
- lib/chewy/backports/deep_dup.rb
|
263
271
|
- lib/chewy/backports/duplicable.rb
|
@@ -269,11 +277,8 @@ files:
|
|
269
277
|
- lib/chewy/index/actions.rb
|
270
278
|
- lib/chewy/index/aliases.rb
|
271
279
|
- lib/chewy/index/settings.rb
|
280
|
+
- lib/chewy/index/specification.rb
|
272
281
|
- lib/chewy/journal.rb
|
273
|
-
- lib/chewy/journal/apply.rb
|
274
|
-
- lib/chewy/journal/clean.rb
|
275
|
-
- lib/chewy/journal/entry.rb
|
276
|
-
- lib/chewy/journal/query.rb
|
277
282
|
- lib/chewy/log_subscriber.rb
|
278
283
|
- lib/chewy/minitest.rb
|
279
284
|
- lib/chewy/minitest/helpers.rb
|
@@ -304,9 +309,6 @@ files:
|
|
304
309
|
- lib/chewy/query/nodes/regexp.rb
|
305
310
|
- lib/chewy/query/nodes/script.rb
|
306
311
|
- lib/chewy/query/pagination.rb
|
307
|
-
- lib/chewy/query/pagination/kaminari.rb
|
308
|
-
- lib/chewy/query/pagination/will_paginate.rb
|
309
|
-
- lib/chewy/query/scoping.rb
|
310
312
|
- lib/chewy/railtie.rb
|
311
313
|
- lib/chewy/rake_helper.rb
|
312
314
|
- lib/chewy/repository.rb
|
@@ -315,12 +317,61 @@ files:
|
|
315
317
|
- lib/chewy/runtime.rb
|
316
318
|
- lib/chewy/runtime/version.rb
|
317
319
|
- lib/chewy/search.rb
|
320
|
+
- lib/chewy/search/loader.rb
|
321
|
+
- lib/chewy/search/pagination/kaminari.rb
|
322
|
+
- lib/chewy/search/pagination/will_paginate.rb
|
323
|
+
- lib/chewy/search/parameters.rb
|
324
|
+
- lib/chewy/search/parameters/aggs.rb
|
325
|
+
- lib/chewy/search/parameters/allow_partial_search_results.rb
|
326
|
+
- lib/chewy/search/parameters/concerns/bool_storage.rb
|
327
|
+
- lib/chewy/search/parameters/concerns/hash_storage.rb
|
328
|
+
- lib/chewy/search/parameters/concerns/integer_storage.rb
|
329
|
+
- lib/chewy/search/parameters/concerns/query_storage.rb
|
330
|
+
- lib/chewy/search/parameters/concerns/string_array_storage.rb
|
331
|
+
- lib/chewy/search/parameters/concerns/string_storage.rb
|
332
|
+
- lib/chewy/search/parameters/docvalue_fields.rb
|
333
|
+
- lib/chewy/search/parameters/explain.rb
|
334
|
+
- lib/chewy/search/parameters/filter.rb
|
335
|
+
- lib/chewy/search/parameters/highlight.rb
|
336
|
+
- lib/chewy/search/parameters/indices.rb
|
337
|
+
- lib/chewy/search/parameters/indices_boost.rb
|
338
|
+
- lib/chewy/search/parameters/limit.rb
|
339
|
+
- lib/chewy/search/parameters/load.rb
|
340
|
+
- lib/chewy/search/parameters/min_score.rb
|
341
|
+
- lib/chewy/search/parameters/none.rb
|
342
|
+
- lib/chewy/search/parameters/offset.rb
|
343
|
+
- lib/chewy/search/parameters/order.rb
|
344
|
+
- lib/chewy/search/parameters/post_filter.rb
|
345
|
+
- lib/chewy/search/parameters/preference.rb
|
346
|
+
- lib/chewy/search/parameters/profile.rb
|
347
|
+
- lib/chewy/search/parameters/query.rb
|
348
|
+
- lib/chewy/search/parameters/request_cache.rb
|
349
|
+
- lib/chewy/search/parameters/rescore.rb
|
350
|
+
- lib/chewy/search/parameters/script_fields.rb
|
351
|
+
- lib/chewy/search/parameters/search_after.rb
|
352
|
+
- lib/chewy/search/parameters/search_type.rb
|
353
|
+
- lib/chewy/search/parameters/source.rb
|
354
|
+
- lib/chewy/search/parameters/storage.rb
|
355
|
+
- lib/chewy/search/parameters/stored_fields.rb
|
356
|
+
- lib/chewy/search/parameters/suggest.rb
|
357
|
+
- lib/chewy/search/parameters/terminate_after.rb
|
358
|
+
- lib/chewy/search/parameters/timeout.rb
|
359
|
+
- lib/chewy/search/parameters/track_scores.rb
|
360
|
+
- lib/chewy/search/parameters/types.rb
|
361
|
+
- lib/chewy/search/parameters/version.rb
|
362
|
+
- lib/chewy/search/query_proxy.rb
|
363
|
+
- lib/chewy/search/request.rb
|
364
|
+
- lib/chewy/search/response.rb
|
365
|
+
- lib/chewy/search/scoping.rb
|
366
|
+
- lib/chewy/search/scrolling.rb
|
367
|
+
- lib/chewy/stash.rb
|
318
368
|
- lib/chewy/strategy.rb
|
319
369
|
- lib/chewy/strategy/active_job.rb
|
320
370
|
- lib/chewy/strategy/atomic.rb
|
321
371
|
- lib/chewy/strategy/base.rb
|
322
372
|
- lib/chewy/strategy/bypass.rb
|
323
373
|
- lib/chewy/strategy/resque.rb
|
374
|
+
- lib/chewy/strategy/shoryuken.rb
|
324
375
|
- lib/chewy/strategy/sidekiq.rb
|
325
376
|
- lib/chewy/strategy/urgent.rb
|
326
377
|
- lib/chewy/type.rb
|
@@ -333,8 +384,13 @@ files:
|
|
333
384
|
- lib/chewy/type/adapter/sequel.rb
|
334
385
|
- lib/chewy/type/crutch.rb
|
335
386
|
- lib/chewy/type/import.rb
|
387
|
+
- lib/chewy/type/import/bulk_builder.rb
|
388
|
+
- lib/chewy/type/import/bulk_request.rb
|
389
|
+
- lib/chewy/type/import/journal_builder.rb
|
390
|
+
- lib/chewy/type/import/routine.rb
|
336
391
|
- lib/chewy/type/mapping.rb
|
337
392
|
- lib/chewy/type/observe.rb
|
393
|
+
- lib/chewy/type/syncer.rb
|
338
394
|
- lib/chewy/type/witchcraft.rb
|
339
395
|
- lib/chewy/type/wrapper.rb
|
340
396
|
- lib/chewy/version.rb
|
@@ -349,9 +405,8 @@ files:
|
|
349
405
|
- spec/chewy/index/actions_spec.rb
|
350
406
|
- spec/chewy/index/aliases_spec.rb
|
351
407
|
- spec/chewy/index/settings_spec.rb
|
408
|
+
- spec/chewy/index/specification_spec.rb
|
352
409
|
- spec/chewy/index_spec.rb
|
353
|
-
- spec/chewy/journal/apply_spec.rb
|
354
|
-
- spec/chewy/journal/entry_spec.rb
|
355
410
|
- spec/chewy/journal_spec.rb
|
356
411
|
- spec/chewy/minitest/helpers_spec.rb
|
357
412
|
- spec/chewy/minitest/search_index_receiver_spec.rb
|
@@ -375,17 +430,66 @@ files:
|
|
375
430
|
- spec/chewy/query/nodes/regexp_spec.rb
|
376
431
|
- spec/chewy/query/nodes/script_spec.rb
|
377
432
|
- spec/chewy/query/pagination/kaminari_spec.rb
|
378
|
-
- spec/chewy/query/pagination/
|
433
|
+
- spec/chewy/query/pagination/will_paginate_spec.rb
|
379
434
|
- spec/chewy/query/pagination_spec.rb
|
380
435
|
- spec/chewy/query_spec.rb
|
436
|
+
- spec/chewy/rake_helper_spec.rb
|
381
437
|
- spec/chewy/repository_spec.rb
|
382
438
|
- spec/chewy/rspec/update_index_spec.rb
|
383
439
|
- spec/chewy/runtime/version_spec.rb
|
384
440
|
- spec/chewy/runtime_spec.rb
|
441
|
+
- spec/chewy/search/loader_spec.rb
|
442
|
+
- spec/chewy/search/pagination/kaminari_examples.rb
|
443
|
+
- spec/chewy/search/pagination/kaminari_spec.rb
|
444
|
+
- spec/chewy/search/pagination/will_paginate_examples.rb
|
445
|
+
- spec/chewy/search/pagination/will_paginate_spec.rb
|
446
|
+
- spec/chewy/search/parameters/aggs_spec.rb
|
447
|
+
- spec/chewy/search/parameters/bool_storage_examples.rb
|
448
|
+
- spec/chewy/search/parameters/docvalue_fields_spec.rb
|
449
|
+
- spec/chewy/search/parameters/explain_spec.rb
|
450
|
+
- spec/chewy/search/parameters/filter_spec.rb
|
451
|
+
- spec/chewy/search/parameters/hash_storage_examples.rb
|
452
|
+
- spec/chewy/search/parameters/highlight_spec.rb
|
453
|
+
- spec/chewy/search/parameters/indices_spec.rb
|
454
|
+
- spec/chewy/search/parameters/integer_storage_examples.rb
|
455
|
+
- spec/chewy/search/parameters/limit_spec.rb
|
456
|
+
- spec/chewy/search/parameters/load_spec.rb
|
457
|
+
- spec/chewy/search/parameters/min_score_spec.rb
|
458
|
+
- spec/chewy/search/parameters/none_spec.rb
|
459
|
+
- spec/chewy/search/parameters/offset_spec.rb
|
460
|
+
- spec/chewy/search/parameters/order_spec.rb
|
461
|
+
- spec/chewy/search/parameters/post_filter_spec.rb
|
462
|
+
- spec/chewy/search/parameters/preference_spec.rb
|
463
|
+
- spec/chewy/search/parameters/profile_spec.rb
|
464
|
+
- spec/chewy/search/parameters/query_spec.rb
|
465
|
+
- spec/chewy/search/parameters/query_storage_examples.rb
|
466
|
+
- spec/chewy/search/parameters/request_cache_spec.rb
|
467
|
+
- spec/chewy/search/parameters/rescore_spec.rb
|
468
|
+
- spec/chewy/search/parameters/script_fields_spec.rb
|
469
|
+
- spec/chewy/search/parameters/search_after_spec.rb
|
470
|
+
- spec/chewy/search/parameters/search_type_spec.rb
|
471
|
+
- spec/chewy/search/parameters/source_spec.rb
|
472
|
+
- spec/chewy/search/parameters/storage_spec.rb
|
473
|
+
- spec/chewy/search/parameters/stored_fields_spec.rb
|
474
|
+
- spec/chewy/search/parameters/string_array_storage_examples.rb
|
475
|
+
- spec/chewy/search/parameters/string_storage_examples.rb
|
476
|
+
- spec/chewy/search/parameters/suggest_spec.rb
|
477
|
+
- spec/chewy/search/parameters/terminate_after_spec.rb
|
478
|
+
- spec/chewy/search/parameters/timeout_spec.rb
|
479
|
+
- spec/chewy/search/parameters/track_scores_spec.rb
|
480
|
+
- spec/chewy/search/parameters/types_spec.rb
|
481
|
+
- spec/chewy/search/parameters/version_spec.rb
|
482
|
+
- spec/chewy/search/parameters_spec.rb
|
483
|
+
- spec/chewy/search/query_proxy_spec.rb
|
484
|
+
- spec/chewy/search/request_spec.rb
|
485
|
+
- spec/chewy/search/response_spec.rb
|
486
|
+
- spec/chewy/search/scrolling_spec.rb
|
385
487
|
- spec/chewy/search_spec.rb
|
488
|
+
- spec/chewy/stash_spec.rb
|
386
489
|
- spec/chewy/strategy/active_job_spec.rb
|
387
490
|
- spec/chewy/strategy/atomic_spec.rb
|
388
491
|
- spec/chewy/strategy/resque_spec.rb
|
492
|
+
- spec/chewy/strategy/shoryuken_spec.rb
|
389
493
|
- spec/chewy/strategy/sidekiq_spec.rb
|
390
494
|
- spec/chewy/strategy_spec.rb
|
391
495
|
- spec/chewy/type/actions_spec.rb
|
@@ -393,9 +497,14 @@ files:
|
|
393
497
|
- spec/chewy/type/adapter/mongoid_spec.rb
|
394
498
|
- spec/chewy/type/adapter/object_spec.rb
|
395
499
|
- spec/chewy/type/adapter/sequel_spec.rb
|
500
|
+
- spec/chewy/type/import/bulk_builder_spec.rb
|
501
|
+
- spec/chewy/type/import/bulk_request_spec.rb
|
502
|
+
- spec/chewy/type/import/journal_builder_spec.rb
|
503
|
+
- spec/chewy/type/import/routine_spec.rb
|
396
504
|
- spec/chewy/type/import_spec.rb
|
397
505
|
- spec/chewy/type/mapping_spec.rb
|
398
506
|
- spec/chewy/type/observe_spec.rb
|
507
|
+
- spec/chewy/type/syncer_spec.rb
|
399
508
|
- spec/chewy/type/witchcraft_spec.rb
|
400
509
|
- spec/chewy/type/wrapper_spec.rb
|
401
510
|
- spec/chewy/type_spec.rb
|
@@ -410,7 +519,7 @@ homepage: https://github.com/toptal/chewy
|
|
410
519
|
licenses:
|
411
520
|
- MIT
|
412
521
|
metadata: {}
|
413
|
-
post_install_message:
|
522
|
+
post_install_message:
|
414
523
|
rdoc_options: []
|
415
524
|
require_paths:
|
416
525
|
- lib
|
@@ -425,9 +534,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
425
534
|
- !ruby/object:Gem::Version
|
426
535
|
version: '0'
|
427
536
|
requirements: []
|
428
|
-
|
429
|
-
|
430
|
-
signing_key:
|
537
|
+
rubygems_version: 3.1.2
|
538
|
+
signing_key:
|
431
539
|
specification_version: 4
|
432
540
|
summary: Elasticsearch ODM client wrapper
|
433
541
|
test_files:
|
@@ -438,9 +546,8 @@ test_files:
|
|
438
546
|
- spec/chewy/index/actions_spec.rb
|
439
547
|
- spec/chewy/index/aliases_spec.rb
|
440
548
|
- spec/chewy/index/settings_spec.rb
|
549
|
+
- spec/chewy/index/specification_spec.rb
|
441
550
|
- spec/chewy/index_spec.rb
|
442
|
-
- spec/chewy/journal/apply_spec.rb
|
443
|
-
- spec/chewy/journal/entry_spec.rb
|
444
551
|
- spec/chewy/journal_spec.rb
|
445
552
|
- spec/chewy/minitest/helpers_spec.rb
|
446
553
|
- spec/chewy/minitest/search_index_receiver_spec.rb
|
@@ -464,17 +571,66 @@ test_files:
|
|
464
571
|
- spec/chewy/query/nodes/regexp_spec.rb
|
465
572
|
- spec/chewy/query/nodes/script_spec.rb
|
466
573
|
- spec/chewy/query/pagination/kaminari_spec.rb
|
467
|
-
- spec/chewy/query/pagination/
|
574
|
+
- spec/chewy/query/pagination/will_paginate_spec.rb
|
468
575
|
- spec/chewy/query/pagination_spec.rb
|
469
576
|
- spec/chewy/query_spec.rb
|
577
|
+
- spec/chewy/rake_helper_spec.rb
|
470
578
|
- spec/chewy/repository_spec.rb
|
471
579
|
- spec/chewy/rspec/update_index_spec.rb
|
472
580
|
- spec/chewy/runtime/version_spec.rb
|
473
581
|
- spec/chewy/runtime_spec.rb
|
582
|
+
- spec/chewy/search/loader_spec.rb
|
583
|
+
- spec/chewy/search/pagination/kaminari_examples.rb
|
584
|
+
- spec/chewy/search/pagination/kaminari_spec.rb
|
585
|
+
- spec/chewy/search/pagination/will_paginate_examples.rb
|
586
|
+
- spec/chewy/search/pagination/will_paginate_spec.rb
|
587
|
+
- spec/chewy/search/parameters/aggs_spec.rb
|
588
|
+
- spec/chewy/search/parameters/bool_storage_examples.rb
|
589
|
+
- spec/chewy/search/parameters/docvalue_fields_spec.rb
|
590
|
+
- spec/chewy/search/parameters/explain_spec.rb
|
591
|
+
- spec/chewy/search/parameters/filter_spec.rb
|
592
|
+
- spec/chewy/search/parameters/hash_storage_examples.rb
|
593
|
+
- spec/chewy/search/parameters/highlight_spec.rb
|
594
|
+
- spec/chewy/search/parameters/indices_spec.rb
|
595
|
+
- spec/chewy/search/parameters/integer_storage_examples.rb
|
596
|
+
- spec/chewy/search/parameters/limit_spec.rb
|
597
|
+
- spec/chewy/search/parameters/load_spec.rb
|
598
|
+
- spec/chewy/search/parameters/min_score_spec.rb
|
599
|
+
- spec/chewy/search/parameters/none_spec.rb
|
600
|
+
- spec/chewy/search/parameters/offset_spec.rb
|
601
|
+
- spec/chewy/search/parameters/order_spec.rb
|
602
|
+
- spec/chewy/search/parameters/post_filter_spec.rb
|
603
|
+
- spec/chewy/search/parameters/preference_spec.rb
|
604
|
+
- spec/chewy/search/parameters/profile_spec.rb
|
605
|
+
- spec/chewy/search/parameters/query_spec.rb
|
606
|
+
- spec/chewy/search/parameters/query_storage_examples.rb
|
607
|
+
- spec/chewy/search/parameters/request_cache_spec.rb
|
608
|
+
- spec/chewy/search/parameters/rescore_spec.rb
|
609
|
+
- spec/chewy/search/parameters/script_fields_spec.rb
|
610
|
+
- spec/chewy/search/parameters/search_after_spec.rb
|
611
|
+
- spec/chewy/search/parameters/search_type_spec.rb
|
612
|
+
- spec/chewy/search/parameters/source_spec.rb
|
613
|
+
- spec/chewy/search/parameters/storage_spec.rb
|
614
|
+
- spec/chewy/search/parameters/stored_fields_spec.rb
|
615
|
+
- spec/chewy/search/parameters/string_array_storage_examples.rb
|
616
|
+
- spec/chewy/search/parameters/string_storage_examples.rb
|
617
|
+
- spec/chewy/search/parameters/suggest_spec.rb
|
618
|
+
- spec/chewy/search/parameters/terminate_after_spec.rb
|
619
|
+
- spec/chewy/search/parameters/timeout_spec.rb
|
620
|
+
- spec/chewy/search/parameters/track_scores_spec.rb
|
621
|
+
- spec/chewy/search/parameters/types_spec.rb
|
622
|
+
- spec/chewy/search/parameters/version_spec.rb
|
623
|
+
- spec/chewy/search/parameters_spec.rb
|
624
|
+
- spec/chewy/search/query_proxy_spec.rb
|
625
|
+
- spec/chewy/search/request_spec.rb
|
626
|
+
- spec/chewy/search/response_spec.rb
|
627
|
+
- spec/chewy/search/scrolling_spec.rb
|
474
628
|
- spec/chewy/search_spec.rb
|
629
|
+
- spec/chewy/stash_spec.rb
|
475
630
|
- spec/chewy/strategy/active_job_spec.rb
|
476
631
|
- spec/chewy/strategy/atomic_spec.rb
|
477
632
|
- spec/chewy/strategy/resque_spec.rb
|
633
|
+
- spec/chewy/strategy/shoryuken_spec.rb
|
478
634
|
- spec/chewy/strategy/sidekiq_spec.rb
|
479
635
|
- spec/chewy/strategy_spec.rb
|
480
636
|
- spec/chewy/type/actions_spec.rb
|
@@ -482,9 +638,14 @@ test_files:
|
|
482
638
|
- spec/chewy/type/adapter/mongoid_spec.rb
|
483
639
|
- spec/chewy/type/adapter/object_spec.rb
|
484
640
|
- spec/chewy/type/adapter/sequel_spec.rb
|
641
|
+
- spec/chewy/type/import/bulk_builder_spec.rb
|
642
|
+
- spec/chewy/type/import/bulk_request_spec.rb
|
643
|
+
- spec/chewy/type/import/journal_builder_spec.rb
|
644
|
+
- spec/chewy/type/import/routine_spec.rb
|
485
645
|
- spec/chewy/type/import_spec.rb
|
486
646
|
- spec/chewy/type/mapping_spec.rb
|
487
647
|
- spec/chewy/type/observe_spec.rb
|
648
|
+
- spec/chewy/type/syncer_spec.rb
|
488
649
|
- spec/chewy/type/witchcraft_spec.rb
|
489
650
|
- spec/chewy/type/wrapper_spec.rb
|
490
651
|
- spec/chewy/type_spec.rb
|