elasticsearch-model 7.1.2.pre → 7.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/Rakefile +6 -4
  4. data/elasticsearch-model.gemspec +1 -2
  5. data/examples/activerecord_article.rb +1 -1
  6. data/examples/activerecord_associations.rb +2 -2
  7. data/examples/activerecord_custom_analyzer.rb +3 -3
  8. data/examples/activerecord_mapping_completion.rb +1 -1
  9. data/examples/activerecord_mapping_edge_ngram.rb +1 -1
  10. data/examples/couchbase_article.rb +1 -1
  11. data/examples/datamapper_article.rb +1 -1
  12. data/examples/mongoid_article.rb +1 -1
  13. data/examples/ohm_article.rb +1 -1
  14. data/examples/riak_article.rb +1 -1
  15. data/lib/elasticsearch/model.rb +3 -3
  16. data/lib/elasticsearch/model/adapter.rb +1 -1
  17. data/lib/elasticsearch/model/adapters/active_record.rb +1 -1
  18. data/lib/elasticsearch/model/adapters/default.rb +1 -1
  19. data/lib/elasticsearch/model/adapters/mongoid.rb +1 -1
  20. data/lib/elasticsearch/model/adapters/multiple.rb +1 -1
  21. data/lib/elasticsearch/model/callbacks.rb +1 -1
  22. data/lib/elasticsearch/model/client.rb +1 -6
  23. data/lib/elasticsearch/model/ext/active_record.rb +1 -1
  24. data/lib/elasticsearch/model/hash_wrapper.rb +1 -1
  25. data/lib/elasticsearch/model/importing.rb +1 -1
  26. data/lib/elasticsearch/model/indexing.rb +3 -3
  27. data/lib/elasticsearch/model/multimodel.rb +1 -1
  28. data/lib/elasticsearch/model/naming.rb +1 -1
  29. data/lib/elasticsearch/model/proxy.rb +1 -1
  30. data/lib/elasticsearch/model/response.rb +1 -1
  31. data/lib/elasticsearch/model/response/aggregations.rb +1 -1
  32. data/lib/elasticsearch/model/response/base.rb +1 -1
  33. data/lib/elasticsearch/model/response/pagination.rb +1 -1
  34. data/lib/elasticsearch/model/response/pagination/kaminari.rb +1 -1
  35. data/lib/elasticsearch/model/response/pagination/will_paginate.rb +1 -1
  36. data/lib/elasticsearch/model/response/records.rb +1 -1
  37. data/lib/elasticsearch/model/response/result.rb +1 -1
  38. data/lib/elasticsearch/model/response/results.rb +2 -1
  39. data/lib/elasticsearch/model/response/suggestions.rb +1 -1
  40. data/lib/elasticsearch/model/searching.rb +1 -1
  41. data/lib/elasticsearch/model/serializing.rb +1 -1
  42. data/lib/elasticsearch/model/version.rb +2 -2
  43. data/spec/elasticsearch/model/adapter_spec.rb +1 -1
  44. data/spec/elasticsearch/model/adapters/active_record/associations_spec.rb +1 -1
  45. data/spec/elasticsearch/model/adapters/active_record/basic_spec.rb +1 -1
  46. data/spec/elasticsearch/model/adapters/active_record/dynamic_index_name_spec.rb +1 -1
  47. data/spec/elasticsearch/model/adapters/active_record/import_spec.rb +1 -1
  48. data/spec/elasticsearch/model/adapters/active_record/multi_model_spec.rb +1 -1
  49. data/spec/elasticsearch/model/adapters/active_record/namespaced_model_spec.rb +1 -1
  50. data/spec/elasticsearch/model/adapters/active_record/pagination_spec.rb +1 -1
  51. data/spec/elasticsearch/model/adapters/active_record/parent_child_spec.rb +1 -1
  52. data/spec/elasticsearch/model/adapters/active_record/serialization_spec.rb +1 -1
  53. data/spec/elasticsearch/model/adapters/active_record_spec.rb +1 -1
  54. data/spec/elasticsearch/model/adapters/default_spec.rb +1 -1
  55. data/spec/elasticsearch/model/adapters/mongoid/basic_spec.rb +1 -1
  56. data/spec/elasticsearch/model/adapters/mongoid/multi_model_spec.rb +1 -1
  57. data/spec/elasticsearch/model/adapters/mongoid_spec.rb +1 -1
  58. data/spec/elasticsearch/model/adapters/multiple_spec.rb +1 -1
  59. data/spec/elasticsearch/model/callbacks_spec.rb +1 -1
  60. data/spec/elasticsearch/model/client_spec.rb +4 -4
  61. data/spec/elasticsearch/model/hash_wrapper_spec.rb +1 -1
  62. data/spec/elasticsearch/model/importing_spec.rb +1 -1
  63. data/spec/elasticsearch/model/indexing_spec.rb +17 -12
  64. data/spec/elasticsearch/model/module_spec.rb +2 -2
  65. data/spec/elasticsearch/model/multimodel_spec.rb +1 -1
  66. data/spec/elasticsearch/model/naming_spec.rb +1 -1
  67. data/spec/elasticsearch/model/proxy_spec.rb +1 -1
  68. data/spec/elasticsearch/model/response/aggregations_spec.rb +1 -1
  69. data/spec/elasticsearch/model/response/base_spec.rb +1 -1
  70. data/spec/elasticsearch/model/response/pagination/kaminari_spec.rb +1 -1
  71. data/spec/elasticsearch/model/response/pagination/will_paginate_spec.rb +1 -1
  72. data/spec/elasticsearch/model/response/records_spec.rb +1 -1
  73. data/spec/elasticsearch/model/response/response_spec.rb +1 -1
  74. data/spec/elasticsearch/model/response/result_spec.rb +1 -1
  75. data/spec/elasticsearch/model/response/results_spec.rb +13 -1
  76. data/spec/elasticsearch/model/searching_search_request_spec.rb +1 -1
  77. data/spec/elasticsearch/model/searching_spec.rb +1 -1
  78. data/spec/elasticsearch/model/serializing_spec.rb +1 -1
  79. data/spec/spec_helper.rb +1 -1
  80. data/spec/support/app.rb +2 -2
  81. data/spec/support/app/answer.rb +2 -2
  82. data/spec/support/app/article.rb +1 -1
  83. data/spec/support/app/article_for_pagination.rb +1 -1
  84. data/spec/support/app/article_no_type.rb +1 -1
  85. data/spec/support/app/article_with_custom_serialization.rb +1 -1
  86. data/spec/support/app/article_with_dynamic_index_name.rb +1 -1
  87. data/spec/support/app/author.rb +1 -1
  88. data/spec/support/app/authorship.rb +1 -1
  89. data/spec/support/app/category.rb +1 -1
  90. data/spec/support/app/comment.rb +1 -1
  91. data/spec/support/app/episode.rb +1 -1
  92. data/spec/support/app/image.rb +1 -1
  93. data/spec/support/app/import_article.rb +1 -1
  94. data/spec/support/app/mongoid_article.rb +1 -1
  95. data/spec/support/app/namespaced_book.rb +1 -1
  96. data/spec/support/app/parent_and_child_searchable.rb +1 -1
  97. data/spec/support/app/post.rb +1 -1
  98. data/spec/support/app/question.rb +1 -1
  99. data/spec/support/app/searchable.rb +1 -1
  100. data/spec/support/app/series.rb +1 -1
  101. metadata +5 -19
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -48,6 +48,10 @@ describe Elasticsearch::Model::Response::Results do
48
48
  response.results
49
49
  end
50
50
 
51
+ let(:records) do
52
+ response.records
53
+ end
54
+
51
55
  describe '#results' do
52
56
 
53
57
  it 'provides access to the results' do
@@ -70,4 +74,12 @@ describe Elasticsearch::Model::Response::Results do
70
74
  expect(response.raw_response).to eq(response_document)
71
75
  end
72
76
  end
77
+
78
+ describe '#records' do
79
+
80
+ it 'provides access to the records' do
81
+ expect(results.records.size).to be(results.results.size)
82
+ expect(results.records.first.foo).to eq(results.results.first.foo)
83
+ end
84
+ end
73
85
  end
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
data/spec/support/app.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -43,4 +43,4 @@ begin
43
43
  require 'support/app/mongoid_article'
44
44
  rescue
45
45
  $stderr.puts("'mongoid' gem is not installed, could not load Mongoid models")
46
- end
46
+ end
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -47,4 +47,4 @@ class Answer < ActiveRecord::Base
47
47
  after_commit lambda { __elasticsearch__.index_document(routing: (question_id || 1)) }, on: :create
48
48
  after_commit lambda { __elasticsearch__.update_document(routing: (question_id || 1)) }, on: :update
49
49
  after_commit lambda {__elasticsearch__.delete_document(routing: (question_id || 1)) }, on: :destroy
50
- end
50
+ end
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # not use this file except in compliance with the License.
7
7
  # You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elasticsearch-model
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.2.pre
4
+ version: 7.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karel Minarik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -94,20 +94,6 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: elasticsearch-extensions
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- version: '0'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ">="
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
97
  - !ruby/object:Gem::Dependency
112
98
  name: kaminari
113
99
  requirement: !ruby/object:Gem::Requirement
@@ -452,11 +438,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
452
438
  version: '2.4'
453
439
  required_rubygems_version: !ruby/object:Gem::Requirement
454
440
  requirements:
455
- - - ">"
441
+ - - ">="
456
442
  - !ruby/object:Gem::Version
457
- version: 1.3.1
443
+ version: '0'
458
444
  requirements: []
459
- rubygems_version: 3.1.4
445
+ rubygems_version: 3.1.6
460
446
  signing_key:
461
447
  specification_version: 4
462
448
  summary: ActiveModel/Record integrations for Elasticsearch.