fdb 5.1.5
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/LICENSE +207 -0
- data/lib/fdb.rb +71 -0
- data/lib/fdbdirectory.rb +689 -0
- data/lib/fdbimpl.rb +1017 -0
- data/lib/fdblocality.rb +83 -0
- data/lib/fdboptions.rb +129 -0
- data/lib/fdbsubspace.rb +71 -0
- data/lib/fdbtuple.rb +307 -0
- metadata +71 -0
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fdb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 5.1.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- FoundationDB
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-04-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ffi
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.1.5
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.1.5
|
27
|
+
description: |
|
28
|
+
Ruby bindings for the FoundationDB database.
|
29
|
+
|
30
|
+
Complete documentation of the FoundationDB Ruby API can be found at:
|
31
|
+
https://www.foundationdb.org/documentation/api-ruby.html.
|
32
|
+
email: fdb-dist@apple.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- LICENSE
|
38
|
+
- lib/fdb.rb
|
39
|
+
- lib/fdbdirectory.rb
|
40
|
+
- lib/fdbimpl.rb
|
41
|
+
- lib/fdblocality.rb
|
42
|
+
- lib/fdboptions.rb
|
43
|
+
- lib/fdbsubspace.rb
|
44
|
+
- lib/fdbtuple.rb
|
45
|
+
homepage: https://www.foundationdb.org
|
46
|
+
licenses:
|
47
|
+
- Apache v2
|
48
|
+
metadata: {}
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 1.9.3
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements:
|
64
|
+
- These bindings require the FoundationDB client. The client can be obtained from
|
65
|
+
https://www.foundationdb.org/downloads/fdb-c/.
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 2.2.2
|
68
|
+
signing_key:
|
69
|
+
specification_version: 4
|
70
|
+
summary: Ruby bindings for the FoundationDB database
|
71
|
+
test_files: []
|