rcurses 1.1 → 1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rcurses.rb +0 -0
- data/rcurses_example.rb +1 -1
- 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: 13819fddc7eb95aa7c4b2efb691448d4d2038bf818f72e4f53a3fd932a4679f6
|
4
|
+
data.tar.gz: b1029633d1f6149e4572418a6973d5fb6b427632885b38401c17b4548b26b030
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60092126289594c0558ccb359ff1bc153ba33294ac067a2575f550fbba079e8885f1ed43e6943d6a1f24e8e998625b2c87d2501dd453de7990146a31bd01b05b
|
7
|
+
data.tar.gz: a4893f8a61283b33677bf15a8e3837429bdeeaf72bb27bd7358435ffb64fcfa764a0110ba69ce39f31cf619480699ad3a8162f2ca06ed6613efe096cdf1f4200
|
data/lib/rcurses.rb
CHANGED
Binary file
|
data/rcurses_example.rb
CHANGED
@@ -25,7 +25,7 @@ pane_bottom.editline # Do not use a refresh before editline
|
|
25
25
|
# Then create a "pop-up" pane in the middle of the screen
|
26
26
|
pane_mid = Rcurses::Pane.new(Rcurses::MAXw/2 - 10, Rcurses::MAXh/2 - 5, 20, 10, 18, 254)
|
27
27
|
pane_mid.border = true
|
28
|
-
pane_mid.text = "You wrote:
|
28
|
+
pane_mid.text = "You wrote:" + "\n" + pane_bottom.text.i
|
29
29
|
pane_mid.align = "c"
|
30
30
|
pane_mid.refresh
|
31
31
|
|
metadata
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcurses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'Create panes (with the colors and(or border), manipulate the panes and
|
14
14
|
add content. Dress up text (in panes or anywhere in the terminal) in bold, italic,
|
15
15
|
underline, reverse color, blink and in any 256 terminal colors for foreground and
|
16
16
|
background. Use a simple editor to let users edit text in panes. Left, right or
|
17
|
-
center align text in panes. Cursor movement around the terminal. New in 1.
|
18
|
-
|
17
|
+
center align text in panes. Cursor movement around the terminal. New in 1.2: Handling
|
18
|
+
original newlines with ansi carry-over.'
|
19
19
|
email: g@isene.com
|
20
20
|
executables: []
|
21
21
|
extensions:
|