rethinkdb 1.8.0.0 → 1.10.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 +7 -0
- data/lib/func.rb +1 -1
- data/lib/ql2.pb.rb +38 -0
- metadata +22 -18
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b4e0169e5ee9d1e485620a64a58339dcfef57923
|
4
|
+
data.tar.gz: 5d6cc674b334f220424674e79488530bf5076c75
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b77846ce19dbc6a56f2031174972041c296180d79fbc962b8a50cc7b895d59fce2d3c9ec6b62f140b425684e1f56f75586aeba305dc11a6545f60bed3672e6e6
|
7
|
+
data.tar.gz: 1111f5b383b53b512698337fcb991b719108fd90d5fb07059318391df9ce8d31695413583065d32827df04fe983354ff88c1844e636c96c618dfa4949c163b44
|
data/lib/func.rb
CHANGED
@@ -27,7 +27,7 @@ module RethinkDB
|
|
27
27
|
:get_all => -1, :eq_join => -1,
|
28
28
|
:javascript => -1, :filter => {:with_block => 0, :without => 1},
|
29
29
|
:slice => -1, :during => -1, :orderby => -1,
|
30
|
-
:iso8601 => -1
|
30
|
+
:iso8601 => -1, :index_create => -1
|
31
31
|
}
|
32
32
|
@@rewrites = {
|
33
33
|
:< => :lt, :<= => :le, :> => :gt, :>= => :ge,
|
data/lib/ql2.pb.rb
CHANGED
@@ -18,10 +18,15 @@ class VersionDummy < ::ProtocolBuffers::Message
|
|
18
18
|
# enums
|
19
19
|
module Version
|
20
20
|
include ::ProtocolBuffers::Enum
|
21
|
+
|
22
|
+
set_fully_qualified_name "VersionDummy.Version"
|
23
|
+
|
21
24
|
V0_1 = 1063369270
|
22
25
|
V0_2 = 1915781601
|
23
26
|
end
|
24
27
|
|
28
|
+
set_fully_qualified_name "VersionDummy"
|
29
|
+
|
25
30
|
end
|
26
31
|
|
27
32
|
class Query < ::ProtocolBuffers::Message
|
@@ -31,13 +36,20 @@ class Query < ::ProtocolBuffers::Message
|
|
31
36
|
# enums
|
32
37
|
module QueryType
|
33
38
|
include ::ProtocolBuffers::Enum
|
39
|
+
|
40
|
+
set_fully_qualified_name "Query.QueryType"
|
41
|
+
|
34
42
|
START = 1
|
35
43
|
CONTINUE = 2
|
36
44
|
STOP = 3
|
37
45
|
end
|
38
46
|
|
47
|
+
set_fully_qualified_name "Query"
|
48
|
+
|
39
49
|
# nested messages
|
40
50
|
class AssocPair < ::ProtocolBuffers::Message
|
51
|
+
set_fully_qualified_name "Query.AssocPair"
|
52
|
+
|
41
53
|
optional :string, :key, 1
|
42
54
|
optional ::Term, :val, 2
|
43
55
|
end
|
@@ -55,16 +67,23 @@ class Frame < ::ProtocolBuffers::Message
|
|
55
67
|
# enums
|
56
68
|
module FrameType
|
57
69
|
include ::ProtocolBuffers::Enum
|
70
|
+
|
71
|
+
set_fully_qualified_name "Frame.FrameType"
|
72
|
+
|
58
73
|
POS = 1
|
59
74
|
OPT = 2
|
60
75
|
end
|
61
76
|
|
77
|
+
set_fully_qualified_name "Frame"
|
78
|
+
|
62
79
|
optional ::Frame::FrameType, :type, 1
|
63
80
|
optional :int64, :pos, 2
|
64
81
|
optional :string, :opt, 3
|
65
82
|
end
|
66
83
|
|
67
84
|
class Backtrace < ::ProtocolBuffers::Message
|
85
|
+
set_fully_qualified_name "Backtrace"
|
86
|
+
|
68
87
|
repeated ::Frame, :frames, 1
|
69
88
|
end
|
70
89
|
|
@@ -74,6 +93,9 @@ class Response < ::ProtocolBuffers::Message
|
|
74
93
|
# enums
|
75
94
|
module ResponseType
|
76
95
|
include ::ProtocolBuffers::Enum
|
96
|
+
|
97
|
+
set_fully_qualified_name "Response.ResponseType"
|
98
|
+
|
77
99
|
SUCCESS_ATOM = 1
|
78
100
|
SUCCESS_SEQUENCE = 2
|
79
101
|
SUCCESS_PARTIAL = 3
|
@@ -82,6 +104,8 @@ class Response < ::ProtocolBuffers::Message
|
|
82
104
|
RUNTIME_ERROR = 18
|
83
105
|
end
|
84
106
|
|
107
|
+
set_fully_qualified_name "Response"
|
108
|
+
|
85
109
|
optional ::Response::ResponseType, :type, 1
|
86
110
|
optional :int64, :token, 2
|
87
111
|
repeated ::Datum, :response, 3
|
@@ -95,6 +119,9 @@ class Datum < ::ProtocolBuffers::Message
|
|
95
119
|
# enums
|
96
120
|
module DatumType
|
97
121
|
include ::ProtocolBuffers::Enum
|
122
|
+
|
123
|
+
set_fully_qualified_name "Datum.DatumType"
|
124
|
+
|
98
125
|
R_NULL = 1
|
99
126
|
R_BOOL = 2
|
100
127
|
R_NUM = 3
|
@@ -103,8 +130,12 @@ class Datum < ::ProtocolBuffers::Message
|
|
103
130
|
R_OBJECT = 6
|
104
131
|
end
|
105
132
|
|
133
|
+
set_fully_qualified_name "Datum"
|
134
|
+
|
106
135
|
# nested messages
|
107
136
|
class AssocPair < ::ProtocolBuffers::Message
|
137
|
+
set_fully_qualified_name "Datum.AssocPair"
|
138
|
+
|
108
139
|
optional :string, :key, 1
|
109
140
|
optional ::Datum, :val, 2
|
110
141
|
end
|
@@ -124,6 +155,9 @@ class Term < ::ProtocolBuffers::Message
|
|
124
155
|
# enums
|
125
156
|
module TermType
|
126
157
|
include ::ProtocolBuffers::Enum
|
158
|
+
|
159
|
+
set_fully_qualified_name "Term.TermType"
|
160
|
+
|
127
161
|
DATUM = 1
|
128
162
|
MAKE_ARRAY = 2
|
129
163
|
MAKE_OBJ = 3
|
@@ -256,8 +290,12 @@ class Term < ::ProtocolBuffers::Message
|
|
256
290
|
LITERAL = 137
|
257
291
|
end
|
258
292
|
|
293
|
+
set_fully_qualified_name "Term"
|
294
|
+
|
259
295
|
# nested messages
|
260
296
|
class AssocPair < ::ProtocolBuffers::Message
|
297
|
+
set_fully_qualified_name "Term.AssocPair"
|
298
|
+
|
261
299
|
optional :string, :key, 1
|
262
300
|
optional ::Term, :val, 2
|
263
301
|
end
|
metadata
CHANGED
@@ -1,38 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rethinkdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.10.0.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- RethinkDB Inc.
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-09-30 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: json
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
- !ruby/object:Gem::Dependency
|
26
28
|
name: ruby-protocol-buffers
|
27
|
-
requirement:
|
28
|
-
none: false
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
|
-
- -
|
31
|
+
- - '>='
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: '0'
|
33
34
|
type: :runtime
|
34
35
|
prerelease: false
|
35
|
-
version_requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
36
41
|
description:
|
37
42
|
email: bugs@rethinkdb.com
|
38
43
|
executables: []
|
@@ -41,35 +46,34 @@ extra_rdoc_files: []
|
|
41
46
|
files:
|
42
47
|
- lib/exc.rb
|
43
48
|
- lib/ql2.pb.rb
|
44
|
-
- lib/rethinkdb.rb
|
45
49
|
- lib/net.rb
|
50
|
+
- lib/rethinkdb.rb
|
46
51
|
- lib/rpp.rb
|
47
52
|
- lib/shim.rb
|
48
53
|
- lib/func.rb
|
49
54
|
homepage: http://rethinkdb.com
|
50
55
|
licenses:
|
51
56
|
- Apache-2
|
57
|
+
metadata: {}
|
52
58
|
post_install_message:
|
53
59
|
rdoc_options: []
|
54
60
|
require_paths:
|
55
61
|
- lib
|
56
62
|
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
63
|
requirements:
|
59
|
-
- -
|
64
|
+
- - '>='
|
60
65
|
- !ruby/object:Gem::Version
|
61
66
|
version: 1.9.0
|
62
67
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
-
none: false
|
64
68
|
requirements:
|
65
|
-
- -
|
69
|
+
- - '>='
|
66
70
|
- !ruby/object:Gem::Version
|
67
71
|
version: '0'
|
68
72
|
requirements: []
|
69
73
|
rubyforge_project:
|
70
|
-
rubygems_version:
|
74
|
+
rubygems_version: 2.0.0
|
71
75
|
signing_key:
|
72
|
-
specification_version:
|
76
|
+
specification_version: 4
|
73
77
|
summary: This package provides the Ruby driver library for the RethinkDB database
|
74
78
|
server.
|
75
79
|
test_files: []
|