bubblezone 0.1.0-x86-linux-gnu → 0.1.2-x86-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: 4870770d127eaefd357b8ecbe072521fde35835a5e741d5cf938f5caf1acd7ea
4
- data.tar.gz: cdad273db617e000788fcdd3d15c66f1ada2fa378b6a0e186a6b9df9a9cadb17
3
+ metadata.gz: 12ff7ee330dcdb84b17195e8b448f91cb7bc940acf6741ba788c69d4d1d6b952
4
+ data.tar.gz: 5a152e5f84b343d5ff14c79729add63aa5fe1fe66b33da05b15c881e846a6f47
5
5
  SHA512:
6
- metadata.gz: eaac187b6f99a459a6d8ac3411f79997f41d454e9e1b84c648c74e46bb86328eeb8239436fd17a7618c0054b77296667e676c2e2d4afc185e62784f0fc612099
7
- data.tar.gz: 64313871793e6fa0d3f95ba90006307afd5a35dfe94a0ff519d09c79b996f22a897bb11737872f851e510f0d79cb36065c4b8a6af8dd59d7a552cdb8b741c86c
6
+ metadata.gz: 3cc38199ce83adf49de662442d1610bcc81ac56bd881d26a29909a9f12a14312c9cfdad7434e19af805f697655e710f8527c6759d85122641121507517ebdf2a
7
+ data.tar.gz: caafa4a98d7aeebc1afbf0c3efad2547f3c0dca07f1bbaf075ff4f57207bce486bfaef0018dcdbcf928287a628e1ce59599f98d06ebf86701052b72c53408f99
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.
data/bubblezone.gemspec CHANGED
@@ -34,6 +34,4 @@ Gem::Specification.new do |spec|
34
34
  spec.require_paths = ["lib"]
35
35
 
36
36
  spec.extensions = ["ext/bubblezone/extconf.rb"]
37
-
38
- spec.add_dependency "rake-compiler", "~> 1.2"
39
37
  end
@@ -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.2"
5
5
  end
metadata CHANGED
@@ -1,28 +1,14 @@
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.2
5
5
  platform: x86-linux-gnu
6
6
  authors:
7
7
  - Marco Roth
8
8
  bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
- dependencies:
12
- - !ruby/object:Gem::Dependency
13
- name: rake-compiler
14
- requirement: !ruby/object:Gem::Requirement
15
- requirements:
16
- - - "~>"
17
- - !ruby/object:Gem::Version
18
- version: '1.2'
19
- type: :runtime
20
- prerelease: false
21
- version_requirements: !ruby/object:Gem::Requirement
22
- requirements:
23
- - - "~>"
24
- - !ruby/object:Gem::Version
25
- version: '1.2'
11
+ dependencies: []
26
12
  description: Ruby bindings for the bubblezone, providing zone management for terminal
27
13
  applications with mouse support.
28
14
  email: