curses-extension 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +8 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2491e7b9c8860078fcf3f353bdada531985f9a28308d661d6f7e752a9a283b2
4
- data.tar.gz: 91e2e96db7fcda0247d02c09a33f2ca2fe28765bb0c9cf418c44bd98a5b7097b
3
+ metadata.gz: 4d5c4143f190a9e043cab56131f250d3f83394e99aa0e86505a0b0b537be5eb6
4
+ data.tar.gz: a47cc72c9c138222d63da1d121b1bf855a091309a52819082a5a29ba843cb93e
5
5
  SHA512:
6
- metadata.gz: 69aa81c3236cf57c80adc460fdc51d5b12b13685b8c702584e94f937e42552e6390b65bf3f6b4a46e6ce92cf51e7f8b7dd5367f5fb83448dc6b52c8892f1bc18
7
- data.tar.gz: d405e32770f13d430e5c710240111affc6666916f2bc60505c9856f4c1a816a8fe5bdb43ee5bd1656969fc9c940398d3ffac92b7bde098d3d5c3215774cba848
6
+ metadata.gz: cb14406a6395b147053771cc3eafe68082ffcf2188d1b9fa7a2a51ef1cb815554b17edd5e0be9a1a6846cc440e6c91d42648f7f0b8ea886f95ef6fa652ae55e8
7
+ data.tar.gz: b58bb0cc299be99e32f3fef6c5520c4b81a3fa1c3b5f5e9f2e1c66ea4717bd65c7fb79ab848019f64228082ef55fb14f7e4a63033e0c443f2b567e52af532cf1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: curses-extension
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-25 00:00:00.000000000 Z
11
+ date: 2021-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: curses
@@ -30,26 +30,12 @@ dependencies:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.3.2
33
- description: "The attributes and functions included in this gem:\n\n Attribute |
34
- Description\n ----------|--------------------------------------------------------\n
35
- \ color | Set the windows color to an already initiated color pair with init_pair(index,
36
- forground, backround)\n fg | Foreground color for window (0-255)\n bg |
37
- Background color for window (0-255)\n attr | Attributes for window (such as
38
- Curses::A_BOLD) - string with \"\\|\" (such as Curses::A_BOLD \\| Curses::A_UNDERLINE)\n
39
- \ update | Whether to update the window on the next refresh\n \n Function |
40
- Description\n --------------------|--------------------------------------------------------\n
41
- \ clr | Clears window without flicker (win.clear flickers)\n clr_to_cur_pos
42
- \ | Clears the window up to the current line\n clr_from_cur_pos | Clears
43
- the rest of the window after the current line\n fill | Fill window
44
- with color as set by :color ( or :bg if not :color is set)\n fill_to_cur_pos |
45
- Fill the window up to the current line\n fill_from_cur_pos | Fill the rest of
46
- the window after the current line\n p(text) | Write text to window
47
- with color or fg/bg and attributes (will handle the exceptions if no colors are
48
- set)\n pclr(text) | As `p(text)` but also clears the rest of the window\n
49
- \ pa(fg,bg,attr,text) | Write text to window with specified fg, bg and attribute(s)\n
50
- \ paclr(text) | As pa(text) but also clears the rest of the window\n \n
51
- \ The curses_template.rb includes the class extension and serves as the basis for
52
- my curses applications."
33
+ description: 'The Ruby curses library is sorely lacking some important features. This
34
+ class extension adds a set of features that makes it much easier to create and manage
35
+ terminal curses applications in Ruby. See the Github page for information on what
36
+ properties and functions are included: https://github.com/isene/Ruby-Curses-Class-Extension.
37
+ The curses_template.rb is also installed in the lib directory and serves as the
38
+ basis for my own curses applications.'
53
39
  email: g@isene.com
54
40
  executables: []
55
41
  extensions: []