ncurses-ruby 1.2.1
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.
- data/COPYING +515 -0
- data/Changes +53 -0
- data/README +351 -0
- data/THANKS +15 -0
- data/TODO +15 -0
- data/examples/LICENSES_for_examples +26 -0
- data/examples/example.rb +129 -0
- data/examples/form.rb +82 -0
- data/examples/form2.rb +184 -0
- data/examples/hello_ncurses.rb +57 -0
- data/examples/rain.rb +219 -0
- data/examples/read_line.rb +67 -0
- data/examples/tclock.rb +227 -0
- data/examples/test_scanw.rb +27 -0
- data/ext/ncurses/extconf.rb +139 -0
- data/ext/ncurses/form_wrap.c +1450 -0
- data/ext/ncurses/form_wrap.h +61 -0
- data/ext/ncurses/menu_wrap.c +1141 -0
- data/ext/ncurses/menu_wrap.h +49 -0
- data/ext/ncurses/ncurses_wrap.c +2739 -0
- data/ext/ncurses/ncurses_wrap.h +100 -0
- data/ext/ncurses/panel_wrap.c +256 -0
- data/ext/ncurses/panel_wrap.h +32 -0
- data/lib/ncurses-ruby/version.rb +5 -0
- data/lib/ncurses.rb +344 -0
- metadata +96 -0
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ncurses-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
- 1
|
10
|
+
version: 1.2.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Tobias Herzke
|
14
|
+
- Simon Kaczor
|
15
|
+
- Earle Clubb
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-05-11 00:00:00 -04:00
|
21
|
+
default_executable:
|
22
|
+
dependencies: []
|
23
|
+
|
24
|
+
description: "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named \"Ncurses\": Functions and external variables are implemented as singleton functions of the Module Ncurses."
|
25
|
+
email:
|
26
|
+
- t-peters@users.berlios.de
|
27
|
+
- skaczor@cox.net
|
28
|
+
- eclubb@valcom.com
|
29
|
+
executables: []
|
30
|
+
|
31
|
+
extensions:
|
32
|
+
- ext/ncurses/extconf.rb
|
33
|
+
extra_rdoc_files: []
|
34
|
+
|
35
|
+
files:
|
36
|
+
- Changes
|
37
|
+
- COPYING
|
38
|
+
- README
|
39
|
+
- THANKS
|
40
|
+
- TODO
|
41
|
+
- examples/example.rb
|
42
|
+
- examples/form.rb
|
43
|
+
- examples/form2.rb
|
44
|
+
- examples/hello_ncurses.rb
|
45
|
+
- examples/LICENSES_for_examples
|
46
|
+
- examples/rain.rb
|
47
|
+
- examples/read_line.rb
|
48
|
+
- examples/tclock.rb
|
49
|
+
- examples/test_scanw.rb
|
50
|
+
- lib/ncurses-ruby/version.rb
|
51
|
+
- lib/ncurses.rb
|
52
|
+
- ext/ncurses/extconf.rb
|
53
|
+
- ext/ncurses/form_wrap.c
|
54
|
+
- ext/ncurses/form_wrap.h
|
55
|
+
- ext/ncurses/menu_wrap.c
|
56
|
+
- ext/ncurses/menu_wrap.h
|
57
|
+
- ext/ncurses/ncurses_wrap.c
|
58
|
+
- ext/ncurses/ncurses_wrap.h
|
59
|
+
- ext/ncurses/panel_wrap.c
|
60
|
+
- ext/ncurses/panel_wrap.h
|
61
|
+
has_rdoc: false
|
62
|
+
homepage: http://github.com/eclubb/ncurses-ruby
|
63
|
+
licenses: []
|
64
|
+
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 3
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
hash: 3
|
85
|
+
segments:
|
86
|
+
- 0
|
87
|
+
version: "0"
|
88
|
+
requirements: []
|
89
|
+
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 1.3.7
|
92
|
+
signing_key:
|
93
|
+
specification_version: 3
|
94
|
+
summary: "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named \"Ncurses\": Functions and external variables are implemented as singleton functions of the Module Ncurses."
|
95
|
+
test_files: []
|
96
|
+
|