rcurses 2.8 → 2.9

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: c57e93f49709d2dc006240468b49f490abbcff381822edf82eac545de3961ebe
4
- data.tar.gz: 92db5bb428787143a9a6bf63508a3301410ab1f06d69ac4fbb5268d33cce1887
3
+ metadata.gz: 66ea9b80bc6e110518ce62e95aa6f021fdbde64a8ca639c7bb43b33856496372
4
+ data.tar.gz: 59a2371b4bad8b29ce338385d7d506426c1d02b4d84f56b4421d1ee4b56dc32d
5
5
  SHA512:
6
- metadata.gz: ffd05a2f1fc8ad273a1e619d0a4ea892c8edd974bcb95dfd42590a969df8eeca7af8f2c675418b8beb90eb751216894539494e208d9eb566aefe2f6a8ef84ea6
7
- data.tar.gz: cdc84b82cb1361a8132c2885905d2029290adbbaa385b53f9a02321c8d1aa84ab54bd38844114bb843c57eaaa4f63fae921fb9f10ba2720c207cc4e928d1af38
6
+ metadata.gz: b04179f02c444db27c64ff66f090eda1a2d0176177a32f85c94e867903e1148af47972b50601d6e70e56d2830c5ba8470fc97ce3385963fd685c5c07fa00b155
7
+ data.tar.gz: 144a1941e04608a19def0450bc93e334d1577388eb798de4423e9720bf3435834786cce1045f3f25969490d5aec6b43010f8da1dca4c69aa1341ec32c827141f
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # rcurses - An alternative curses library written in pure Ruby
2
2
 
3
3
  ![Ruby](https://img.shields.io/badge/language-Ruby-red) [![Gem Version](https://badge.fury.io/rb/rcurses.svg)](https://badge.fury.io/rb/rcurses) ![Unlicense](https://img.shields.io/badge/license-Unlicense-green) ![Stay Amazing](https://img.shields.io/badge/Stay-Amazing-important)
4
-
4
+
5
5
  <img src="img/rcurses-logo.png" width="150" height="150">
6
6
 
7
7
  Create curses applications for the terminal easier than ever.
@@ -108,6 +108,9 @@ inject("chars",pos) | Inject "chars" at position 'pos' in the pure version of th
108
108
 
109
109
  PS: Blink does not work in conjunction with setting a background color in urxvt. It does work in gnome-terminal. But the overall performance in urxvt as orders of magnitude better than gnome-terminal.
110
110
 
111
+ # Cleaning up upon exit
112
+ End a program with `Rcurses.clear_screen` to clear the screen for any rcurses residues.
113
+
111
114
  # module Cursor
112
115
  To use this module, first do `include Rcurses::Cursor`. Create a new cursor object with `mycursor = Rcurses::Cursor`. Then you can apply the following methods to `mycursor`:
113
116
 
@@ -0,0 +1,6 @@
1
+ module Rcurses
2
+ def self.clear_screen
3
+ # ANSI code \e[2J clears the screen, and \e[H moves the cursor to the top left.
4
+ print "\e[2J\e[H"
5
+ end
6
+ end
data/lib/rcurses.rb CHANGED
@@ -5,13 +5,14 @@
5
5
  # Web_site: http://isene.com/
6
6
  # Github: https://github.com/isene/rcurses
7
7
  # License: Public domain
8
- # Version: 2.4.7: Fixed getchr timeout, added panel function 'ask'
8
+ # Version: 2.9: Added Rcurses.clear_screen
9
9
 
10
10
  require 'io/console' # Basic gem for rcurses
11
11
  require 'io/wait' # stdin handling
12
12
  require 'timeout'
13
13
 
14
14
  require_relative 'string_extensions'
15
+ require_relative 'rcurses/general'
15
16
  require_relative 'rcurses/cursor'
16
17
  require_relative 'rcurses/input'
17
18
  require_relative 'rcurses/pane'
@@ -11,6 +11,9 @@ class String
11
11
 
12
12
  # Internal function
13
13
  def color(text, sp, ep = "\e[0m")
14
+ # Replace every newline with a newline followed by the start sequence,
15
+ # so that formatting is reestablished on each new line.
16
+ text = text.gsub("\n", "#{ep}\n#{sp}")
14
17
  "#{sp}#{text}#{ep}"
15
18
  end
16
19
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcurses
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.8'
4
+ version: '2.9'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-27 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clipboard
@@ -29,8 +29,7 @@ description: 'Create curses applications for the terminal easier than ever. Crea
29
29
  up text (in panes or anywhere in the terminal) in bold, italic, underline, reverse
30
30
  color, blink and in any 256 terminal colors for foreground and background. Use a
31
31
  simple editor to let users edit text in panes. Left, right or center align text
32
- in panes. Cursor movement around the terminal. New in 2.8: Added lineup and linedown
33
- methods to pane and more key captures to Rcurses::Input.'
32
+ in panes. Cursor movement around the terminal. New in 2.9: Added Rcurses.clear_screen.'
34
33
  email: g@isene.com
35
34
  executables: []
36
35
  extensions: []
@@ -42,6 +41,7 @@ files:
42
41
  - examples/focus_panes.rb
43
42
  - lib/rcurses.rb
44
43
  - lib/rcurses/cursor.rb
44
+ - lib/rcurses/general.rb
45
45
  - lib/rcurses/input.rb
46
46
  - lib/rcurses/pane.rb
47
47
  - lib/string_extensions.rb