smbcloud-auth 0.4.6-x86_64-linux → 0.4.8-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3899df676bada37b453c2880e0eb0a0a958a767fc04f8ef716fd2b81d5cb2c9f
4
- data.tar.gz: 07a4921d37efc72e1dba18e721850175c9da03ddadef40cf928376d724ac8420
3
+ metadata.gz: 4e7a4252391a31a159ac1ae604f8ee19a39ca9a51f5c3070dcde7c9786e54043
4
+ data.tar.gz: 2b0056b64571f183b07d6c2c649e51046c865ffa70ef81f6a1c906448d107eb6
5
5
  SHA512:
6
- metadata.gz: 942ecf12d3b9cbd302ac2518cbeaf4add025684cbd9e11e919d38a735f36ff5451737529ad4caf22b8e4180930f45a08de0c613ce51dba156105ea088d607dd9
7
- data.tar.gz: ed6c8be682758c689ac5d5a52165ad7492799621310128567c8d92d3c3a01c16bfe384cf03b3026e351f6057fdc386984068ab0699f523380690198a33774a16
6
+ metadata.gz: e7b467e6ad256c744755330607bb627f336683b04b5ed4af23f6e1cd993dfc5e729d3c31a748bdbecac3f67827d20af4c81042cc7b24388c5ac92631d33bd870
7
+ data.tar.gz: eb5399cb8accf54179d77652f5e2ed558d548622f60dadd792f27147614032fa767375ab49adcc61ae9755ec8d92cf3813ef98681ec8ab9ab6cd60724b71f364
data/README.md CHANGED
@@ -58,4 +58,4 @@ MIT
58
58
 
59
59
  ## Copyright
60
60
 
61
- © 2026 [smbCloud](https://smbcloud.xyz) (Splitfire AB).
61
+ © 2026 [Splitfire AB](https://5mb.app) ([smbCloud](https://smbcloud.xyz)).
data/Rakefile CHANGED
@@ -11,4 +11,22 @@ RbSys::ExtensionTask.new('auth', GEMSPEC) do |ext|
11
11
  ext.lib_dir = 'lib/auth'
12
12
  end
13
13
 
14
+ # macOS: the rb_sys/rake-compiler build emits the bundle as an MH_DYLIB with an
15
+ # empty LC_ID_DYLIB install name (a plain `cargo build` does not). dyld on macOS
16
+ # 15+/Tahoe rejects that with "load command string extends beyond end of load
17
+ # command", so the gem fails to load. Stamp a valid install name onto every
18
+ # bundle the build produces by enhancing the bundle file tasks themselves (which
19
+ # is what `rake native gem` runs, not the top-level `compile`). install_name_tool
20
+ # re-signs ad-hoc, ships on the macOS gem-build runners, and works across archs
21
+ # (cross-built x86_64 bundles too). Idempotent.
22
+ if RbConfig::CONFIG['host_os'] =~ /darwin/
23
+ Rake::Task.tasks.each do |t|
24
+ next unless t.name.end_with?('auth.bundle')
25
+
26
+ t.enhance do
27
+ sh 'install_name_tool', '-id', '@rpath/auth.bundle', t.name if File.exist?(t.name)
28
+ end
29
+ end
30
+ end
31
+
14
32
  task default: :compile
data/lib/auth/auth.so CHANGED
Binary file
data/lib/auth/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Auth
4
- VERSION = '0.4.6'
4
+ VERSION = '0.4.8'
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smbcloud-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.8
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Seto Elkahfi
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-06-28 00:00:00.000000000 Z
10
+ date: 2026-07-10 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: json