elasticsearch-query-dsl 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rspec +3 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +84 -0
- data/Guardfile +4 -0
- data/LICENSE +21 -0
- data/README.md +29 -0
- data/elasticsearch-query-dsl.gemspec +14 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e3a83dda6c5429761cc588c59c5ab1221699a6de
|
4
|
+
data.tar.gz: 7efdd99ab4f110b88a1e4f1927bef7846594a4f7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5c80efd380aafb4030dddde502dfbf423e565f188ffdd076f0d46a2d96881a252933de600f90a064ac2c4e947a2892e9ee963c607342c34ef7f0aed57bda6e7d
|
7
|
+
data.tar.gz: 359d44d8ad5b842ed7d67e17668cf8848fe982721c42a4573a44c4b6a900fca0c479352fb4b7628e5435cb6cbdb091e020541a95565b3589e303b9c957501643
|
data/.gitignore
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore gem builds
|
8
|
+
*.gem
|
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
elasticsearch-query-dsl (0.0.0)
|
5
|
+
daedal (~> 0.0.12)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
axiom-types (0.1.1)
|
11
|
+
descendants_tracker (~> 0.0.4)
|
12
|
+
ice_nine (~> 0.11.0)
|
13
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
14
|
+
celluloid (0.15.2)
|
15
|
+
timers (~> 1.1.0)
|
16
|
+
coderay (1.1.0)
|
17
|
+
coercible (1.0.0)
|
18
|
+
descendants_tracker (~> 0.0.1)
|
19
|
+
daedal (0.0.12)
|
20
|
+
virtus (>= 1.0.0)
|
21
|
+
descendants_tracker (0.0.4)
|
22
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
23
|
+
diff-lcs (1.2.5)
|
24
|
+
equalizer (0.0.9)
|
25
|
+
ffi (1.9.3)
|
26
|
+
formatador (0.2.5)
|
27
|
+
fuubar (1.3.3)
|
28
|
+
rspec (>= 2.14.0, < 3.1.0)
|
29
|
+
ruby-progressbar (~> 1.4)
|
30
|
+
guard (2.6.1)
|
31
|
+
formatador (>= 0.2.4)
|
32
|
+
listen (~> 2.7)
|
33
|
+
lumberjack (~> 1.0)
|
34
|
+
pry (>= 0.9.12)
|
35
|
+
thor (>= 0.18.1)
|
36
|
+
guard-rspec (4.2.10)
|
37
|
+
guard (~> 2.1)
|
38
|
+
rspec (>= 2.14, < 4.0)
|
39
|
+
ice_nine (0.11.0)
|
40
|
+
listen (2.7.9)
|
41
|
+
celluloid (>= 0.15.2)
|
42
|
+
rb-fsevent (>= 0.9.3)
|
43
|
+
rb-inotify (>= 0.9)
|
44
|
+
lumberjack (1.0.7)
|
45
|
+
method_source (0.8.2)
|
46
|
+
pry (0.10.0)
|
47
|
+
coderay (~> 1.1.0)
|
48
|
+
method_source (~> 0.8.1)
|
49
|
+
slop (~> 3.4)
|
50
|
+
rb-fsevent (0.9.4)
|
51
|
+
rb-inotify (0.9.5)
|
52
|
+
ffi (>= 0.5.0)
|
53
|
+
rspec (3.0.0)
|
54
|
+
rspec-core (~> 3.0.0)
|
55
|
+
rspec-expectations (~> 3.0.0)
|
56
|
+
rspec-mocks (~> 3.0.0)
|
57
|
+
rspec-core (3.0.2)
|
58
|
+
rspec-support (~> 3.0.0)
|
59
|
+
rspec-expectations (3.0.2)
|
60
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
61
|
+
rspec-support (~> 3.0.0)
|
62
|
+
rspec-mocks (3.0.2)
|
63
|
+
rspec-support (~> 3.0.0)
|
64
|
+
rspec-support (3.0.1)
|
65
|
+
ruby-progressbar (1.5.1)
|
66
|
+
slop (3.5.0)
|
67
|
+
thor (0.19.1)
|
68
|
+
thread_safe (0.3.4)
|
69
|
+
timers (1.1.0)
|
70
|
+
virtus (1.0.2)
|
71
|
+
axiom-types (~> 0.1)
|
72
|
+
coercible (~> 1.0)
|
73
|
+
descendants_tracker (~> 0.0.3)
|
74
|
+
equalizer (~> 0.0.9)
|
75
|
+
|
76
|
+
PLATFORMS
|
77
|
+
ruby
|
78
|
+
|
79
|
+
DEPENDENCIES
|
80
|
+
elasticsearch-query-dsl!
|
81
|
+
fuubar
|
82
|
+
guard
|
83
|
+
guard-rspec
|
84
|
+
rspec
|
data/Guardfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 RallyPointNetworks
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
Elasticsearch Query DSL
|
2
|
+
=======================
|
3
|
+
|
4
|
+
Ruby block DSL for writing ElasticSearch queries
|
5
|
+
|
6
|
+
License
|
7
|
+
-------
|
8
|
+
|
9
|
+
The MIT License (MIT)
|
10
|
+
|
11
|
+
Copyright (c) 2014 RallyPointNetworks
|
12
|
+
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
15
|
+
in the Software without restriction, including without limitation the rights
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
18
|
+
furnished to do so, subject to the following conditions:
|
19
|
+
|
20
|
+
The above copyright notice and this permission notice shall be included in all
|
21
|
+
copies or substantial portions of the Software.
|
22
|
+
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
29
|
+
SOFTWARE.
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'elasticsearch-query-dsl'
|
3
|
+
s.version = '0.0.0'
|
4
|
+
s.summary = "Ruby block DSL for writing ElasticSearch queries"
|
5
|
+
s.description = "Ruby block DSL for writing ElasticSearch queries"
|
6
|
+
s.authors = ["Christopher Schuch"]
|
7
|
+
s.email = 'cas13091@gmail.com'
|
8
|
+
s.files = `git ls-files`.split("\n")
|
9
|
+
s.require_paths = ['lib']
|
10
|
+
s.license = 'MIT'
|
11
|
+
s.homepage = 'https://github.com/RallyPointNetworks/elasticsearch-query-dsl'
|
12
|
+
|
13
|
+
s.add_dependency('daedal', '~> 0.0.12')
|
14
|
+
end
|
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: elasticsearch-query-dsl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Christopher Schuch
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-06-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: daedal
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.0.12
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.0.12
|
27
|
+
description: Ruby block DSL for writing ElasticSearch queries
|
28
|
+
email: cas13091@gmail.com
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- ".gitignore"
|
34
|
+
- ".rspec"
|
35
|
+
- Gemfile
|
36
|
+
- Gemfile.lock
|
37
|
+
- Guardfile
|
38
|
+
- LICENSE
|
39
|
+
- README.md
|
40
|
+
- elasticsearch-query-dsl.gemspec
|
41
|
+
homepage: https://github.com/RallyPointNetworks/elasticsearch-query-dsl
|
42
|
+
licenses:
|
43
|
+
- MIT
|
44
|
+
metadata: {}
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
requirements: []
|
60
|
+
rubyforge_project:
|
61
|
+
rubygems_version: 2.2.2
|
62
|
+
signing_key:
|
63
|
+
specification_version: 4
|
64
|
+
summary: Ruby block DSL for writing ElasticSearch queries
|
65
|
+
test_files: []
|
66
|
+
has_rdoc:
|