fdb 7.2.5 → 7.2.6
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 +4 -4
- data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdbimpl.rb +2 -2
- metadata +11 -11
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/LICENSE → LICENSE} +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdb.rb +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdbdirectory.rb +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdbimpl_v609.rb +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdblocality.rb +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdboptions.rb +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdbsubspace.rb +0 -0
- /data/{home/foundationdb_ci/src/oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOo/foundationdb/bindings/ruby/lib → lib}/fdbtuple.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ce19f286bf528e3fafa97e486921554868dc6d65f59b3022ddb784b55a4e391
|
|
4
|
+
data.tar.gz: 69045b33a95f5c074a115156f193c5b2bd8895f448e0cba18605d666abc35aab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc178daee0d55f7b6b0d39f83dccb80cf3e668bbbfc060689918f3b3b18644f436d08c1f14f1db1b5cf69dc51bf43e7cd69dc6e4a1eb477231e4352533d54cf8
|
|
7
|
+
data.tar.gz: 1b20ad0eb4026645173a8cd5b77cea5cfe557f96fbd7f9048b389ef077eff844f49c64643599be296b145e6dcb7abcc49a391abd3dbc82765e4c80d68ff50aec
|
|
@@ -36,8 +36,8 @@ module FDB
|
|
|
36
36
|
module FDBC
|
|
37
37
|
require 'rbconfig'
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
raise LoadError, "FoundationDB API only supported on x86_64 (not #{RbConfig::CONFIG['host_cpu']})"
|
|
39
|
+
unless ["x86_64", "arm64"].include? RbConfig::CONFIG['host_cpu']
|
|
40
|
+
raise LoadError, "FoundationDB API only supported on x86_64 and arm64 (not #{RbConfig::CONFIG['host_cpu']})"
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
case RbConfig::CONFIG['host_os']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- FoundationDB
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -40,15 +40,15 @@ executables: []
|
|
|
40
40
|
extensions: []
|
|
41
41
|
extra_rdoc_files: []
|
|
42
42
|
files:
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
43
|
+
- LICENSE
|
|
44
|
+
- lib/fdb.rb
|
|
45
|
+
- lib/fdbdirectory.rb
|
|
46
|
+
- lib/fdbimpl.rb
|
|
47
|
+
- lib/fdbimpl_v609.rb
|
|
48
|
+
- lib/fdblocality.rb
|
|
49
|
+
- lib/fdboptions.rb
|
|
50
|
+
- lib/fdbsubspace.rb
|
|
51
|
+
- lib/fdbtuple.rb
|
|
52
52
|
homepage: https://www.foundationdb.org
|
|
53
53
|
licenses:
|
|
54
54
|
- Apache-2.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|