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 +4 -4
- data/README.md +4 -1
- data/lib/rcurses/general.rb +6 -0
- data/lib/rcurses.rb +2 -1
- data/lib/string_extensions.rb +3 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66ea9b80bc6e110518ce62e95aa6f021fdbde64a8ca639c7bb43b33856496372
|
4
|
+
data.tar.gz: 59a2371b4bad8b29ce338385d7d506426c1d02b4d84f56b4421d1ee4b56dc32d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
 [](https://badge.fury.io/rb/rcurses)  
|
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
|
|
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.
|
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'
|
data/lib/string_extensions.rb
CHANGED
@@ -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.
|
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-
|
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.
|
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
|