elasticsearch-persistence 7.0.0.pre → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +15 -12
- data/elasticsearch-persistence.gemspec +1 -1
- data/examples/notes/README.markdown +1 -1
- data/examples/notes/application.rb +0 -1
- data/lib/elasticsearch/persistence/repository/search.rb +1 -1
- data/lib/elasticsearch/persistence/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eea7195102f1daca4e126beff602fe237e0e7c796854cef358c3dd49eb1e4e2b
|
|
4
|
+
data.tar.gz: 4e63a0d5c366e8fe0a10453a95f56deac07dd7c08f9c8355ca3a2c35d34c2642
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b9257cbd3930c862c80dc89730cca51ac88f47ab43ad7bcf44b5cf39386a6bec4b4d705124ab0fd45cdf9d1757dfaffd5a8f5bfb69feb8e2056946312d427e3
|
|
7
|
+
data.tar.gz: b56ffb7acdeabc4fa96fe463e9bbafce7e74f82479a98cba225af81d783856a86a5b0d5505a467630edcc4097e429ef75961164ff1fa5dd4741f394d44acf1f0
|
data/README.md
CHANGED
|
@@ -574,16 +574,19 @@ The ActiveRecord pattern has been deprecated as of version 6.0.0 of this gem. Pl
|
|
|
574
574
|
|
|
575
575
|
This software is licensed under the Apache 2 license, quoted below.
|
|
576
576
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
577
|
+
Licensed to Elasticsearch B.V. under one or more contributor
|
|
578
|
+
license agreements. See the NOTICE file distributed with
|
|
579
|
+
this work for additional information regarding copyright
|
|
580
|
+
ownership. Elasticsearch B.V. licenses this file to you under
|
|
581
|
+
the Apache License, Version 2.0 (the "License"); you may
|
|
582
|
+
not use this file except in compliance with the License.
|
|
581
583
|
You may obtain a copy of the License at
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
Unless required by applicable law or agreed to in writing,
|
|
586
|
-
distributed under the License is distributed on an
|
|
587
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
588
|
-
See the License for the
|
|
589
|
-
|
|
584
|
+
|
|
585
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
586
|
+
|
|
587
|
+
Unless required by applicable law or agreed to in writing,
|
|
588
|
+
software distributed under the License is distributed on an
|
|
589
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
590
|
+
KIND, either express or implied. See the License for the
|
|
591
|
+
specific language governing permissions and limitations
|
|
592
|
+
under the License.
|
|
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
|
|
|
41
41
|
s.required_ruby_version = ">= 1.9.3"
|
|
42
42
|
|
|
43
43
|
s.add_dependency "elasticsearch", '~> 7'
|
|
44
|
-
s.add_dependency "elasticsearch-model", '7.0.0
|
|
44
|
+
s.add_dependency "elasticsearch-model", '7.0.0'
|
|
45
45
|
s.add_dependency "activesupport", '> 4'
|
|
46
46
|
s.add_dependency "activemodel", '> 4'
|
|
47
47
|
s.add_dependency "hashie"
|
|
@@ -21,7 +21,7 @@ The application demonstrates:
|
|
|
21
21
|
|
|
22
22
|
This software is licensed under the Apache 2 license, quoted below.
|
|
23
23
|
|
|
24
|
-
Copyright (c) 2014 Elasticsearch <
|
|
24
|
+
Copyright (c) 2014 Elasticsearch <https://www.elastic.co>
|
|
25
25
|
|
|
26
26
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
27
27
|
you may not use this file except in compliance with the License.
|
|
@@ -88,7 +88,7 @@ module Elasticsearch
|
|
|
88
88
|
#
|
|
89
89
|
# @example Return the count of domain object matching a query in the Elasticsearch DSL
|
|
90
90
|
#
|
|
91
|
-
# repository.
|
|
91
|
+
# repository.count(query: { match: { title: 'fox dog' } })
|
|
92
92
|
# # => 1
|
|
93
93
|
#
|
|
94
94
|
# @param [ Hash, String ] query_or_definition The query or search definition.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticsearch-persistence
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.0
|
|
4
|
+
version: 7.0.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: 2019-
|
|
11
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: elasticsearch
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 7.0.0
|
|
33
|
+
version: 7.0.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 7.0.0
|
|
40
|
+
version: 7.0.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: activesupport
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -345,11 +345,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
345
345
|
version: 1.9.3
|
|
346
346
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
347
347
|
requirements:
|
|
348
|
-
- - "
|
|
348
|
+
- - ">="
|
|
349
349
|
- !ruby/object:Gem::Version
|
|
350
|
-
version:
|
|
350
|
+
version: '0'
|
|
351
351
|
requirements: []
|
|
352
|
-
rubygems_version: 3.0.
|
|
352
|
+
rubygems_version: 3.0.6
|
|
353
353
|
signing_key:
|
|
354
354
|
specification_version: 4
|
|
355
355
|
summary: Persistence layer for Ruby models and Elasticsearch.
|