chewie 0.2.3 → 0.2.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87efde82129dae245a02a880e4b843c9a640140ce2eee57aca0c6ed5ab3f1bdb
4
- data.tar.gz: 1329723440602fdee2b6c7d1ff11d7907b5f6464f392d807690dfba8d45a101f
3
+ metadata.gz: 7d0c55046c161e6c3528bf7a7ad08b068787af8145c6d9a746f89d8a426a6403
4
+ data.tar.gz: 58503a3685b8e0242fcce0469df7dc131e0e29c37fcc3990cccee95946a9670e
5
5
  SHA512:
6
- metadata.gz: 49934eea3792c825ca77cdd38e32472aef70abb28673021fa6dfeedda08338b68e6a4a035843a8a731492b50e5a9d8c63a99ad6e472f29ed4342652e26096009
7
- data.tar.gz: b0d75849ad471dd71826643a3fe2b6da041ffbf89fe2f6dd619b8ca551a349e28a58c0b79ee135e8e5bd2741ae450130e255af0895f26eb1274cd530194dc6d8
6
+ metadata.gz: 3ca8e83cc8b023ab55f2f0ab243355fcd530504a4ed7aa12be410c71568235e44b4f28a44432bc806b229ddab3b9c93b9d66125597ca10f6d873a005bef50aa3
7
+ data.tar.gz: 8c81c01318727fc30e776ee4dc6651a8676a12dfe922712dc650fee80d4c94fdeb2f398f7a0220f15aa10a8a23700c9ab60d43aa9895873c1244c1d4b8273336
@@ -1,8 +1,7 @@
1
1
  module Chewie
2
2
  module Interface
3
3
  module Bool
4
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-bool-query.html
5
- #
4
+
6
5
  # @param attribute [Symbol] Field you wish to search
7
6
  # @param with [Symbol] Specify the term-level query [term, terms, range]
8
7
  # @param combine [Array] Target additional filter values to be combined in the formatted output (optional)
@@ -1,8 +1,7 @@
1
1
  module Chewie
2
2
  module Interface
3
3
  module FullText
4
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query.html
5
- #
4
+
6
5
  # @param attribute [Symbol] Field you wish to search
7
6
  # @param context [Symbol] Desired context the query should appear (see https://www.elastic.co/guide/en/elasticsearch/reference/current/compound-queries.html)
8
7
  # @param clause [Symbol] Specify a nested clause, usually context dependent (optional)
@@ -20,8 +19,6 @@ module Chewie
20
19
  set_handler(context: context, handler: handler)
21
20
  end
22
21
 
23
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-multi-match-query.html
24
- #
25
22
  # @param with [Array] A collection of field symbols to match against
26
23
  # @param context [Symbol] Desired context the query should appear (see https://www.elastic.co/guide/en/elasticsearch/reference/current/compound-queries.html)
27
24
  # @param clause [Symbol] Specify a nested clause, usually context dependent (optional)
@@ -1,8 +1,7 @@
1
1
  module Chewie
2
2
  module Interface
3
3
  module TermLevel
4
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-fuzzy-query.html
5
- #
4
+
6
5
  # @param attribute [Symbol] Field you wish to search
7
6
  # @param context [Symbol] Desired context the query should appear (see https://www.elastic.co/guide/en/elasticsearch/reference/current/compound-queries.html)
8
7
  # @param clause [Symbol] Specify a nested clause, usually context dependent (optional)
@@ -19,8 +18,6 @@ module Chewie
19
18
  set_handler(context: context, handler: handler)
20
19
  end
21
20
 
22
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-query.html
23
- #
24
21
  # @param attribute [Symbol] Field you wish to search
25
22
  # @param context [Symbol] Desired context the query should appear (see https://www.elastic.co/guide/en/elasticsearch/reference/current/compound-queries.html)
26
23
  # @param clause [Symbol] Specify a nested clause, usually context dependent (optional)
@@ -38,8 +35,6 @@ module Chewie
38
35
  set_handler(context: context, handler: handler)
39
36
  end
40
37
 
41
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
42
- #
43
38
  # @param attribute [Symbol] Field you wish to search
44
39
  # @param context [Symbol] Desired context the query should appear (see https://www.elastic.co/guide/en/elasticsearch/reference/current/compound-queries.html)
45
40
  # @param clause [Symbol] Specify a nested clause, usually context dependent (optional)
@@ -57,8 +52,6 @@ module Chewie
57
52
  set_handler(context: context, handler: handler)
58
53
  end
59
54
 
60
- # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html
61
- #
62
55
  # @param attribute [Symbol] Field you wish to search
63
56
  # @param context [Symbol] Desired context the query should appear (see https://www.elastic.co/guide/en/elasticsearch/reference/current/compound-queries.html)
64
57
  # @param clause [Symbol] Specify a nested clause, usually context dependent (optional)
@@ -1,3 +1,3 @@
1
1
  module Chewie
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chewie
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - mrjonesbot