kailash 4.3.0-aarch64-linux → 4.3.3-aarch64-linux
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/lib/kailash/{kailash.so → 3.2/kailash.so} +0 -0
- data/lib/kailash/3.3/kailash.so +0 -0
- data/lib/kailash/3.4/kailash.so +0 -0
- data/lib/kailash.rb +25 -3
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5086a3f722ce5dd9d8a6c0c734f24fb14ac9455c55fab1e8e7069ccb0153a7aa
|
|
4
|
+
data.tar.gz: 5c55451ee53543dad81e0b17357c678c29a84d103d95aadf4a537fd5c40b6a5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1deeee53a3dc5f91a222b8ab16670080886f6d1da09d0eeceb44020381aa54c3e3bc132254ef62fde9b0efc4900a846e9ea8d674b8ea6a2a537b55593d53a67
|
|
7
|
+
data.tar.gz: 369207b58fe81585ead6e7b0f9bdfc61cb944c6d4c4e615fe87c775cc969fb7652d9500e184cc1e4b93070511381285beddc7688a9393dbe9c42dceb8f95adb1
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/kailash.rb
CHANGED
|
@@ -2,11 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
require_relative "kailash/version"
|
|
4
4
|
|
|
5
|
+
# Native-extension loader.
|
|
6
|
+
#
|
|
7
|
+
# Precompiled platform gems are FAT GEMS: the native extension is built once
|
|
8
|
+
# per supported Ruby ABI and stored at `lib/kailash/<major.minor>/kailash.{so,bundle}`
|
|
9
|
+
# (e.g. `lib/kailash/3.3/kailash.so`). A Ruby native extension links the
|
|
10
|
+
# specific libruby it was compiled against (e.g. `libruby-3.3.so.3.3`), so a
|
|
11
|
+
# single binary CANNOT load across ABI boundaries — a 3.1-linked extension
|
|
12
|
+
# fails on 3.2+ with `libruby-3.1.so.3.1: cannot open shared object file`.
|
|
13
|
+
# Selecting the binary matching the running interpreter's ABI is what makes
|
|
14
|
+
# the gem loadable across every Ruby in `required_ruby_version` (#1151).
|
|
15
|
+
#
|
|
16
|
+
# Source gems (compiled on install via extconf.rb) and flat dev builds place
|
|
17
|
+
# the extension directly at `lib/kailash/kailash.{so,bundle}` with no ABI
|
|
18
|
+
# subdirectory; those fall through to the flat-path branch below.
|
|
5
19
|
begin
|
|
6
|
-
|
|
20
|
+
# RbConfig::CONFIG["ruby_version"] is the ABI key, e.g. "3.3.0"; the fat-gem
|
|
21
|
+
# subdir uses the "major.minor" form ("3.3") that rake-compiler emits.
|
|
22
|
+
abi = RbConfig::CONFIG["ruby_version"][/\A\d+\.\d+/]
|
|
23
|
+
require_relative "kailash/#{abi}/kailash"
|
|
7
24
|
rescue LoadError
|
|
8
|
-
|
|
9
|
-
|
|
25
|
+
begin
|
|
26
|
+
# Flat layout: source gem / dev build / single-ABI host build.
|
|
27
|
+
require_relative "kailash/kailash"
|
|
28
|
+
rescue LoadError
|
|
29
|
+
# Last resort: search the full load path (handles non-standard layouts).
|
|
30
|
+
require "kailash/kailash"
|
|
31
|
+
end
|
|
10
32
|
end
|
|
11
33
|
|
|
12
34
|
# Pure-Ruby convenience layer on top of the native MCP type wrappers
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kailash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.
|
|
4
|
+
version: 4.3.3
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Kailash Authors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake-compiler
|
|
@@ -47,7 +47,9 @@ extra_rdoc_files: []
|
|
|
47
47
|
files:
|
|
48
48
|
- README.md
|
|
49
49
|
- lib/kailash.rb
|
|
50
|
-
- lib/kailash/kailash.so
|
|
50
|
+
- lib/kailash/3.2/kailash.so
|
|
51
|
+
- lib/kailash/3.3/kailash.so
|
|
52
|
+
- lib/kailash/3.4/kailash.so
|
|
51
53
|
- lib/kailash/mcp.rb
|
|
52
54
|
- lib/kailash/trust_plane.rb
|
|
53
55
|
- lib/kailash/version.rb
|