ratatui_ruby 0.7.3 → 0.7.4

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: f76aaa4da70206d5855ab0d4d7a9356bd57117c1d4ff6d243e86db8bb6e53be9
4
- data.tar.gz: 88b96b0a71f595d7ca4b255d90f29b3aac3e2fcc02f323d2db9adfaa233bf4a0
3
+ metadata.gz: a8c89b519ce8bf221f4f21ad0b1032e2d7e11214e9df530fc37cdd456f908889
4
+ data.tar.gz: f188fbed117ef8758f2dcdca0c56b837e424de84fea2a2a9ee4027685ccad41e
5
5
  SHA512:
6
- metadata.gz: 9d8bc1bc8aa2ae2625302e0024f83c6b30459551377f111e9703e9ed9f70fe0c79cc5cd6af57d9770bd5cc7ecfc93e9e8472f7ebde314b1c989a9cff87110bba
7
- data.tar.gz: b0d285b610e38669c9c764b492e384ae2e9f84739b5572096d70a74818b4ce87f2025c06d9055e55e3e7966c8f0ba9768533ba683ea232a3a77a224ac716f8ed
6
+ metadata.gz: 9955835cd59fd2c8e13f3d0f8f9b284b140f1887d529fb1e1bbb4b39941a37259fff0159791a0fac87c105797ba0dc31b17ddfe0582a71a4efe7461e1c6a0a12
7
+ data.tar.gz: ff2b0011104b3edf8dd20ee7dcce5c622772f2d9820e70d66f27738aee20a71f3eff29129a1c9feb4e6c81beeab75d724cc7b7fbe3214f28430458861a15206a
data/.builds/ruby-3.2.yml CHANGED
@@ -16,7 +16,7 @@ packages:
16
16
  - clang
17
17
  - git
18
18
  artifacts:
19
- - ratatui_ruby/pkg/ratatui_ruby-0.7.3.gem
19
+ - ratatui_ruby/pkg/ratatui_ruby-0.7.4.gem
20
20
  sources:
21
21
  - https://git.sr.ht/~kerrick/ratatui_ruby
22
22
  tasks:
data/.builds/ruby-3.3.yml CHANGED
@@ -16,7 +16,7 @@ packages:
16
16
  - clang
17
17
  - git
18
18
  artifacts:
19
- - ratatui_ruby/pkg/ratatui_ruby-0.7.3.gem
19
+ - ratatui_ruby/pkg/ratatui_ruby-0.7.4.gem
20
20
  sources:
21
21
  - https://git.sr.ht/~kerrick/ratatui_ruby
22
22
  tasks:
data/.builds/ruby-3.4.yml CHANGED
@@ -16,7 +16,7 @@ packages:
16
16
  - clang
17
17
  - git
18
18
  artifacts:
19
- - ratatui_ruby/pkg/ratatui_ruby-0.7.3.gem
19
+ - ratatui_ruby/pkg/ratatui_ruby-0.7.4.gem
20
20
  sources:
21
21
  - https://git.sr.ht/~kerrick/ratatui_ruby
22
22
  tasks:
@@ -16,7 +16,7 @@ packages:
16
16
  - clang
17
17
  - git
18
18
  artifacts:
19
- - ratatui_ruby/pkg/ratatui_ruby-0.7.3.gem
19
+ - ratatui_ruby/pkg/ratatui_ruby-0.7.4.gem
20
20
  sources:
21
21
  - https://git.sr.ht/~kerrick/ratatui_ruby
22
22
  tasks:
data/CHANGELOG.md CHANGED
@@ -12,6 +12,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
12
12
 
13
13
  ### Added
14
14
 
15
+ ### Changed
16
+
17
+ ### Fixed
18
+
19
+ ### Removed
20
+
21
+ ## [0.7.4] - 2026-01-05
22
+
23
+ ### Added
24
+
15
25
  - **Block Inner Area Calculation**: `Block#inner(area)` method computes the inner content area given an outer `Rect`, accounting for borders and padding. Essential for layout calculations when you need to know usable space inside a block.
16
26
  - **Deferred Warnings During TUI Sessions**: Experimental feature warnings (like `Paragraph#line_count`) are now automatically queued during active TUI sessions and flushed to stderr after `restore_terminal`. This prevents warnings from corrupting the TUI display. See `doc/troubleshooting/tui_output.md` for details on handling terminal output during TUI sessions.
17
27
  - **Session State Tracking**: `RatatuiRuby.terminal_active?` indicates whether a TUI session is active. Calling `init_terminal` or `init_test_terminal` while a session is already active now raises `Error::Invariant`.
@@ -415,6 +425,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
415
425
  - **Testing Support**: Included `RatatuiRuby::TestHelper` and RSpec integration to make testing your TUI applications possible.
416
426
 
417
427
  [Unreleased]: https://git.sr.ht/~kerrick/ratatui_ruby/refs/HEAD
428
+ [0.7.4]: https://git.sr.ht/~kerrick/ratatui_ruby/refs/v0.7.4
418
429
  [0.7.3]: https://git.sr.ht/~kerrick/ratatui_ruby/refs/v0.7.3
419
430
  [0.7.2]: https://git.sr.ht/~kerrick/ratatui_ruby/refs/v0.7.2
420
431
  [0.7.1]: https://git.sr.ht/~kerrick/ratatui_ruby/refs/v0.7.1
@@ -1012,7 +1012,7 @@ dependencies = [
1012
1012
 
1013
1013
  [[package]]
1014
1014
  name = "ratatui_ruby"
1015
- version = "0.7.3"
1015
+ version = "0.7.4"
1016
1016
  dependencies = [
1017
1017
  "bumpalo",
1018
1018
  "lazy_static",
@@ -3,7 +3,7 @@
3
3
 
4
4
  [package]
5
5
  name = "ratatui_ruby"
6
- version = "0.7.3"
6
+ version = "0.7.4"
7
7
  edition = "2021"
8
8
 
9
9
  [lib]
@@ -8,5 +8,5 @@
8
8
  module RatatuiRuby
9
9
  # The version of the ratatui_ruby gem.
10
10
  # See https://semver.org/spec/v2.0.0.html
11
- VERSION = "0.7.3"
11
+ VERSION = "0.7.4"
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ratatui_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kerrick Long