bubbletea 0.1.0-x86_64-linux-gnu → 0.1.2-x86_64-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: 5443f4818733b333e4ba895bdd763a19d507ba27fd742c96edc034c312e6f94d
4
- data.tar.gz: b2d3df2ef7ecabbaa5b777a6dd8fb6541de9873a7e3745d7843aeccc3db18e17
3
+ metadata.gz: b09d366d1b57c8f97093316d26b1310d36cadb4f226fb2690c7cdad5c17ea293
4
+ data.tar.gz: 52a5e71033f983ea8e3bc54d94651035e8cbe871b79d3d7c1981724f15b02703
5
5
  SHA512:
6
- metadata.gz: 0d0190e8d12e0c3ebe533a0aa1218377d30ccae105c96327489cbab9af50c17fdf594c21cfff23e1d1eece78ac7ead955053dd0ffa08815efeb7450c3f10bf50
7
- data.tar.gz: c4bc8ddc6068768004a3c4d6a4c414e6b508b7b538c072bb37352b692b059cd848597071267c443cf0bcac20f684eacb9990665ae90b236eec898675eb65aa0a
6
+ metadata.gz: 4a65e26d5eeaec6dc486a75cf3dd0f25bda7b9774f730a97159fd7d97b3c422f09adf3818c0c73d53ac939ae107d5f62fedfa450a15f9f7defa4c5590e6147f2
7
+ data.tar.gz: fef074791a5318b264ccf6457d3868d6b701de43fa56d55d1a431e76aa90a60eda93700a5b8756e57c4267ffe7060188c0dc9ec1e04ef25f2c4b5b5bbcf26e77
data/README.md CHANGED
@@ -261,4 +261,14 @@ The gem is available as open source under the terms of the MIT License.
261
261
 
262
262
  ## Acknowledgments
263
263
 
264
- This gem wraps [charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea), part of the excellent [Charm](https://charm.sh) ecosystem.
264
+ This gem wraps [charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea), part of the excellent [Charm](https://charm.sh) ecosystem. Charm Ruby is not affiliated with or endorsed by Charmbracelet, Inc.
265
+
266
+ ---
267
+
268
+ Part of [Charm Ruby](https://charm-ruby.dev).
269
+
270
+ <a href="https://charm-ruby.dev"><img alt="Charm Ruby" src="https://marcoroth.dev/images/heros/glamorous-christmas.png" width="400"></a>
271
+
272
+ [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)
273
+
274
+ The terminal doesn't have to be boring.
@@ -42,16 +42,20 @@ unless File.exist?(File.join(go_lib_dir, "libbubbletea.a"))
42
42
  ERROR
43
43
  end
44
44
 
45
+ go_lib_path = File.join(go_lib_dir, "libbubbletea.a")
46
+
45
47
  $LDFLAGS << " -L#{go_lib_dir}"
46
48
  $INCFLAGS << " -I#{go_lib_dir}"
47
49
 
48
- $LOCAL_LIBS << " #{go_lib_dir}/libbubbletea.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_bubbletea"
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 Bubbletea
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bubbletea
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Marco Roth