daedal 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/daedal.rb +1 -0
- data/lib/daedal/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NTEzNTlhZTlmYjZkY2U0ZGY3YzhhZmNiYjdjZjljOThmM2U2MGI4Mg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NTRkNGMyYjc1ZTRmYzQyZTM0ZTUzMDg4N2Y2NzI2YWYzNzQ1YzljNA==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZTk5MjRmMWYyMjcyZjEzYWIyM2M4MGViYTVkYTFhNDI5NjM5OWNiMzg3MmU3
|
10
|
+
MTZhOTg3NzAxZWUyMTAyYTM2NzFkMWViMmY1NmU2MDE1NTdhZGM4Njg2MmVi
|
11
|
+
NDQyOGRlNjdkMjdjYTk0ZjVmMzBkMzI0ZDRiN2UxNzU5YTUyZjg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MzA5MzBiNmU5ZWY3YTQ2YTIwMzU4ZGNlZWU0NmQ1NzA1ZTZmOTc5OTllZDZh
|
14
|
+
ZDI3MzBiNTdjNzY2YTQ1YWNkOTEyMmM0N2Q0Yzk4YTc5M2U5YWNhMzM5MjU5
|
15
|
+
MzhkNjk0MWEyOTkxZDgzNGIzOThjYzI0ZWJkNjU3Y2Q3NDM5YWQ=
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -15,7 +15,7 @@ However, elaborate queries often take the form of a complex, deeply nested hash,
|
|
15
15
|
which can become difficult to create or traverse. By wrapping the core components of the
|
16
16
|
query DSL into Ruby objects, Daedal addresses the following issues:
|
17
17
|
|
18
|
-
* Constructing a large nested hash can be a headache, and using
|
18
|
+
* Constructing a large nested hash can be a headache, and using some of the popular hash extensions may result in performance issues
|
19
19
|
* Remembering all the optional parameters each query can take, where they reside within the query structure, and what values they can take can be challenging
|
20
20
|
* Improperly structured queries, or queries with bad parameters, are hard to catch before sending to the server (and receiving an error)
|
21
21
|
* Debugging invalid queries can be a grueling task
|
data/lib/daedal.rb
CHANGED
@@ -28,6 +28,7 @@ require 'daedal/filters/geo_distance_filter'
|
|
28
28
|
require 'daedal/filters/and_filter'
|
29
29
|
require 'daedal/filters/or_filter'
|
30
30
|
require 'daedal/filters/bool_filter'
|
31
|
+
require 'daedal/filters/nested_filter'
|
31
32
|
|
32
33
|
# queries
|
33
34
|
require 'daedal/queries/match_all_query'
|
data/lib/daedal/version.rb
CHANGED
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: daedal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Schuch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: virtus
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - '>='
|
17
|
+
- - ! '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 1.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - '>='
|
24
|
+
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.0.0
|
27
27
|
description: Classes for easier ElasticSearch query creation
|
@@ -104,18 +104,19 @@ require_paths:
|
|
104
104
|
- lib
|
105
105
|
required_ruby_version: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- - '>='
|
107
|
+
- - ! '>='
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
111
|
requirements:
|
112
|
-
- - '>='
|
112
|
+
- - ! '>='
|
113
113
|
- !ruby/object:Gem::Version
|
114
114
|
version: '0'
|
115
115
|
requirements: []
|
116
116
|
rubyforge_project:
|
117
|
-
rubygems_version: 2.
|
117
|
+
rubygems_version: 2.2.1
|
118
118
|
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: ElasticSearch Query DSL Builders
|
121
121
|
test_files: []
|
122
|
+
has_rdoc:
|