bubblezone 0.1.0-aarch64-linux-gnu → 0.1.1-aarch64-linux-gnu

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: 3603fe8905d5a31db6b81af6a8aa3b45165463f05a15a2b0b9acb8f5fbd2d741
4
- data.tar.gz: 289aee474aa3d8dcb0d5f978f7f3b6784bcb0f298af9b61bcf616ee16ea07547
3
+ metadata.gz: 51937745b06c6f4066545c2441d6e365f710528a4cb8a7424e1c10ec1c4adf1f
4
+ data.tar.gz: da56357948269ac3871c8a7a9e9c11d57eb714e15d2117349cc31e0ee6a196d1
5
5
  SHA512:
6
- metadata.gz: 577970de6b4a7b0bacb7c4b13bc952c92fc2b244b2b3db3147e7c9265e4712acb97229d0ce628c5a0514036dc65f3e4a220e63bc8af2c6b312caa0cda0a8163c
7
- data.tar.gz: 24ea8b162e42d2f84cef12c2be55c084563ef68537f5410e381cf4c469c3854050ae2782dd8518d771d9454c4dc93d9a7dea62fa7c1509a9ec64c77d24e76ae4
6
+ metadata.gz: d15af6e8cd928145b35b4bb1e7756f2636886950db4b1bc63e63b9f71c493fbb7847928d6fed6f1b5efb123ffe3d3974b57d6e921fcada0d8deaa59c9ebeda01
7
+ data.tar.gz: 4760ab747f63c5d57c378d46f14fab3af7fc08d107a9ab1a8219e633c4286a905a291db57324bf5886c6af90cd185d3ffc60245bfa46f41238834b45a1511269
data/README.md CHANGED
@@ -367,4 +367,14 @@ The gem is available as open source under the terms of the MIT License.
367
367
 
368
368
  ## Acknowledgments
369
369
 
370
- This gem wraps [lrstanley/bubblezone](https://github.com/lrstanley/bubblezone), which provides zone tracking for terminal UIs and builds on the excellent [Charm](https://charm.sh) ecosystem, including [lipgloss](https://github.com/marcoroth/lipgloss-ruby) and [bubbletea](https://github.com/marcoroth/bubbletea-ruby).
370
+ This gem wraps [lrstanley/bubblezone](https://github.com/lrstanley/bubblezone), which provides zone tracking for terminal UIs and builds on the excellent [Charm](https://charm.sh) ecosystem, including [lipgloss](https://github.com/charmbracelet/lipgloss) and [bubbletea](https://github.com/charmbracelet/bubbletea). Charm Ruby is not affiliated with or endorsed by Charmbracelet, Inc.
371
+
372
+ ---
373
+
374
+ Part of [Charm Ruby](https://charm-ruby.dev).
375
+
376
+ <a href="https://charm-ruby.dev"><img alt="Charm Ruby" src="https://marcoroth.dev/images/heros/glamorous-christmas.png" width="400"></a>
377
+
378
+ [Lipgloss](https://github.com/marcoroth/lipgloss-ruby) • [Bubble Tea](https://github.com/marcoroth/bubbletea-ruby) • [Bubbles](https://github.com/marcoroth/bubbles-ruby) • [Glamour](https://github.com/marcoroth/glamour-ruby) • [Huh?](https://github.com/marcoroth/huh-ruby) • [Harmonica](https://github.com/marcoroth/harmonica-ruby) • [Bubblezone](https://github.com/marcoroth/bubblezone-ruby) • [Gum](https://github.com/marcoroth/gum-ruby) • [ntcharts](https://github.com/marcoroth/ntcharts-ruby)
379
+
380
+ The terminal doesn't have to be boring.
@@ -42,16 +42,20 @@ unless File.exist?(File.join(go_lib_dir, "libbubblezone.a"))
42
42
  ERROR
43
43
  end
44
44
 
45
+ go_lib_path = File.join(go_lib_dir, "libbubblezone.a")
46
+
45
47
  $LDFLAGS << " -L#{go_lib_dir}"
46
48
  $INCFLAGS << " -I#{go_lib_dir}"
47
49
 
48
- $LOCAL_LIBS << " #{go_lib_dir}/libbubblezone.a"
49
-
50
50
  case RbConfig::CONFIG["host_os"]
51
51
  when /darwin/
52
+ $LDFLAGS << " -Wl,-load_hidden,#{go_lib_path}"
53
+ $LDFLAGS << " -Wl,-exported_symbol,_Init_bubblezone"
52
54
  $LDFLAGS << " -framework CoreFoundation -framework Security -framework SystemConfiguration"
53
55
  $LDFLAGS << " -lresolv"
54
56
  when /linux/
57
+ $LOCAL_LIBS << " #{go_lib_path}"
58
+ $LDFLAGS << " -Wl,--exclude-libs,ALL"
55
59
  $LDFLAGS << " -lpthread -lm -ldl"
56
60
  $LDFLAGS << " -lresolv" if find_library("resolv", "res_query")
57
61
  end
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bubblezone
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bubblezone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Marco Roth