elliottcable-ncurses 1.3.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/.manifest +23 -0
- data/Rakefile.rb +60 -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 +120 -0
- data/ext/ncurses/form_wrap.c +1449 -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 +2740 -0
- data/ext/ncurses/ncurses_wrap.h +111 -0
- data/ext/ncurses/panel_wrap.c +256 -0
- data/ext/ncurses/panel_wrap.h +32 -0
- data/lib/ncurses.rb +350 -0
- data/lib/ncurses/etc.rb +3 -0
- data/license.txt +515 -0
- data/ncurses.gemspec +35 -0
- metadata +107 -0
data/ncurses.gemspec
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{ncurses}
|
|
5
|
+
s.version = "1.3.1"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = ["Tobias Herzke, Simon Kaczor, elliottcable"]
|
|
9
|
+
s.date = %q{2009-03-17}
|
|
10
|
+
s.description = %q{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.}
|
|
11
|
+
s.email = ["t-peters@users.berlios.de", "skaczor@cox.net", "Ncurses@elliottcable.com"]
|
|
12
|
+
s.extensions = ["ext/ncurses/extconf.rb"]
|
|
13
|
+
s.extra_rdoc_files = ["ext/ncurses/extconf.rb", "ext/ncurses/form_wrap.c", "ext/ncurses/form_wrap.h", "ext/ncurses/menu_wrap.c", "ext/ncurses/menu_wrap.h", "ext/ncurses/ncurses_wrap.c", "ext/ncurses/ncurses_wrap.h", "ext/ncurses/panel_wrap.c", "ext/ncurses/panel_wrap.h", "lib/ncurses/etc.rb", "lib/ncurses.rb"]
|
|
14
|
+
s.files = ["examples/example.rb", "examples/form.rb", "examples/form2.rb", "examples/hello_ncurses.rb", "examples/LICENSES_for_examples", "examples/rain.rb", "examples/read_line.rb", "examples/tclock.rb", "examples/test_scanw.rb", "ext/ncurses/extconf.rb", "ext/ncurses/form_wrap.c", "ext/ncurses/form_wrap.h", "ext/ncurses/menu_wrap.c", "ext/ncurses/menu_wrap.h", "ext/ncurses/ncurses_wrap.c", "ext/ncurses/ncurses_wrap.h", "ext/ncurses/panel_wrap.c", "ext/ncurses/panel_wrap.h", "lib/ncurses/etc.rb", "lib/ncurses.rb", "license.txt", "Rakefile.rb", ".manifest", "ncurses.gemspec"]
|
|
15
|
+
s.has_rdoc = true
|
|
16
|
+
s.homepage = %q{http://github.com/elliottcable/ncurses}
|
|
17
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ncurses", "--main", "README.markdown"]
|
|
18
|
+
s.require_paths = ["lib", "ext"]
|
|
19
|
+
s.rubyforge_project = %q{ncurses}
|
|
20
|
+
s.rubygems_version = %q{1.3.1}
|
|
21
|
+
s.summary = %q{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.}
|
|
22
|
+
|
|
23
|
+
if s.respond_to? :specification_version then
|
|
24
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
25
|
+
s.specification_version = 2
|
|
26
|
+
|
|
27
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
28
|
+
s.add_development_dependency(%q<echoe>, [">= 0", "= 3.0.2"])
|
|
29
|
+
else
|
|
30
|
+
s.add_dependency(%q<echoe>, [">= 0", "= 3.0.2"])
|
|
31
|
+
end
|
|
32
|
+
else
|
|
33
|
+
s.add_dependency(%q<echoe>, [">= 0", "= 3.0.2"])
|
|
34
|
+
end
|
|
35
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: elliottcable-ncurses
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.3.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Tobias Herzke, Simon Kaczor, elliottcable
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-03-17 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: echoe
|
|
17
|
+
type: :development
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
- - "="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.0.2
|
|
27
|
+
version:
|
|
28
|
+
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."
|
|
29
|
+
email:
|
|
30
|
+
- t-peters@users.berlios.de
|
|
31
|
+
- skaczor@cox.net
|
|
32
|
+
- Ncurses@elliottcable.com
|
|
33
|
+
executables: []
|
|
34
|
+
|
|
35
|
+
extensions:
|
|
36
|
+
- ext/ncurses/extconf.rb
|
|
37
|
+
extra_rdoc_files:
|
|
38
|
+
- ext/ncurses/extconf.rb
|
|
39
|
+
- ext/ncurses/form_wrap.c
|
|
40
|
+
- ext/ncurses/form_wrap.h
|
|
41
|
+
- ext/ncurses/menu_wrap.c
|
|
42
|
+
- ext/ncurses/menu_wrap.h
|
|
43
|
+
- ext/ncurses/ncurses_wrap.c
|
|
44
|
+
- ext/ncurses/ncurses_wrap.h
|
|
45
|
+
- ext/ncurses/panel_wrap.c
|
|
46
|
+
- ext/ncurses/panel_wrap.h
|
|
47
|
+
- lib/ncurses/etc.rb
|
|
48
|
+
- lib/ncurses.rb
|
|
49
|
+
files:
|
|
50
|
+
- examples/example.rb
|
|
51
|
+
- examples/form.rb
|
|
52
|
+
- examples/form2.rb
|
|
53
|
+
- examples/hello_ncurses.rb
|
|
54
|
+
- examples/LICENSES_for_examples
|
|
55
|
+
- examples/rain.rb
|
|
56
|
+
- examples/read_line.rb
|
|
57
|
+
- examples/tclock.rb
|
|
58
|
+
- examples/test_scanw.rb
|
|
59
|
+
- ext/ncurses/extconf.rb
|
|
60
|
+
- ext/ncurses/form_wrap.c
|
|
61
|
+
- ext/ncurses/form_wrap.h
|
|
62
|
+
- ext/ncurses/menu_wrap.c
|
|
63
|
+
- ext/ncurses/menu_wrap.h
|
|
64
|
+
- ext/ncurses/ncurses_wrap.c
|
|
65
|
+
- ext/ncurses/ncurses_wrap.h
|
|
66
|
+
- ext/ncurses/panel_wrap.c
|
|
67
|
+
- ext/ncurses/panel_wrap.h
|
|
68
|
+
- lib/ncurses/etc.rb
|
|
69
|
+
- lib/ncurses.rb
|
|
70
|
+
- license.txt
|
|
71
|
+
- Rakefile.rb
|
|
72
|
+
- .manifest
|
|
73
|
+
- ncurses.gemspec
|
|
74
|
+
has_rdoc: true
|
|
75
|
+
homepage: http://github.com/elliottcable/ncurses
|
|
76
|
+
post_install_message:
|
|
77
|
+
rdoc_options:
|
|
78
|
+
- --line-numbers
|
|
79
|
+
- --inline-source
|
|
80
|
+
- --title
|
|
81
|
+
- Ncurses
|
|
82
|
+
- --main
|
|
83
|
+
- README.markdown
|
|
84
|
+
require_paths:
|
|
85
|
+
- lib
|
|
86
|
+
- ext
|
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
|
+
requirements:
|
|
89
|
+
- - ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: "0"
|
|
92
|
+
version:
|
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: "1.2"
|
|
98
|
+
version:
|
|
99
|
+
requirements: []
|
|
100
|
+
|
|
101
|
+
rubyforge_project: ncurses
|
|
102
|
+
rubygems_version: 1.2.0
|
|
103
|
+
signing_key:
|
|
104
|
+
specification_version: 2
|
|
105
|
+
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."
|
|
106
|
+
test_files: []
|
|
107
|
+
|