rbcurse-core 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +1945 -0
- data/README.md +6 -2
- data/VERSION +1 -1
- data/examples/abasiclist.rb +1 -1
- data/examples/bline.rb +135 -0
- data/examples/dbdemo.rb +26 -20
- data/examples/term2.rb +1 -1
- data/examples/testlistbox.rb +6 -4
- data/lib/rbcurse/core/include/appmethods.rb +5 -3
- data/lib/rbcurse/core/include/io.rb +176 -598
- data/lib/rbcurse/core/include/rhistory.rb +22 -5
- data/lib/rbcurse/core/system/ncurses.rb +3 -4
- data/lib/rbcurse/core/system/window.rb +0 -46
- data/lib/rbcurse/core/util/app.rb +35 -48
- data/lib/rbcurse/core/util/bottomline.rb +18 -11
- data/lib/rbcurse/core/util/padreader.rb +2 -1
- data/lib/rbcurse/core/util/rcommandwindow.rb +1 -0
- data/lib/rbcurse/core/util/rdialogs.rb +74 -164
- data/lib/rbcurse/core/util/viewer.rb +1 -1
- data/lib/rbcurse/core/widgets/rmessagebox.rb +14 -4
- data/lib/rbcurse/core/widgets/rtabbedwindow.rb +1 -1
- data/lib/rbcurse/core/widgets/rtextarea.rb +59 -9
- data/lib/rbcurse/core/widgets/rtextview.rb +48 -10
- data/lib/rbcurse/core/widgets/rwidget.rb +38 -6
- data/lib/rbcurse/core/widgets/tabular.rb +4 -4
- data/lib/rbcurse/core/widgets/tabularwidget.rb +1 -1
- data/lib/rbcurse/core/widgets/textpad.rb +2 -2
- data/rbcurse-core.gemspec +134 -0
- metadata +33 -36
@@ -0,0 +1,134 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "rbcurse-core"
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Rahul Kumar"]
|
12
|
+
s.date = "2011-12-09"
|
13
|
+
s.description = "Ruby curses/ncurses widgets for easy application development on text terminals (ruby 1.9, 1.8)"
|
14
|
+
s.email = "sentinel1879@gmail.com"
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README.md"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
"CHANGELOG",
|
20
|
+
"README.md",
|
21
|
+
"VERSION",
|
22
|
+
"examples/abasiclist.rb",
|
23
|
+
"examples/alpmenu.rb",
|
24
|
+
"examples/app.sample",
|
25
|
+
"examples/atree.rb",
|
26
|
+
"examples/bline.rb",
|
27
|
+
"examples/common/file.rb",
|
28
|
+
"examples/data/README.markdown",
|
29
|
+
"examples/data/brew.txt",
|
30
|
+
"examples/data/color.2",
|
31
|
+
"examples/data/gemlist.txt",
|
32
|
+
"examples/data/lotr.txt",
|
33
|
+
"examples/data/ports.txt",
|
34
|
+
"examples/data/table.txt",
|
35
|
+
"examples/data/tasks.csv",
|
36
|
+
"examples/data/tasks.txt",
|
37
|
+
"examples/data/todo.txt",
|
38
|
+
"examples/data/todocsv.csv",
|
39
|
+
"examples/data/unix1.txt",
|
40
|
+
"examples/data/unix2.txt",
|
41
|
+
"examples/dbdemo.rb",
|
42
|
+
"examples/dirtree.rb",
|
43
|
+
"examples/newtabbedwindow.rb",
|
44
|
+
"examples/newtesttabp.rb",
|
45
|
+
"examples/tabular.rb",
|
46
|
+
"examples/tasks.rb",
|
47
|
+
"examples/term2.rb",
|
48
|
+
"examples/testkeypress.rb",
|
49
|
+
"examples/testlistbox.rb",
|
50
|
+
"examples/testmessagebox.rb",
|
51
|
+
"examples/testree.rb",
|
52
|
+
"examples/testwsshortcuts.rb",
|
53
|
+
"examples/testwsshortcuts2.rb",
|
54
|
+
"lib/rbcurse.rb",
|
55
|
+
"lib/rbcurse/core/docs/index.txt",
|
56
|
+
"lib/rbcurse/core/include/action.rb",
|
57
|
+
"lib/rbcurse/core/include/appmethods.rb",
|
58
|
+
"lib/rbcurse/core/include/bordertitle.rb",
|
59
|
+
"lib/rbcurse/core/include/chunk.rb",
|
60
|
+
"lib/rbcurse/core/include/io.rb",
|
61
|
+
"lib/rbcurse/core/include/listcellrenderer.rb",
|
62
|
+
"lib/rbcurse/core/include/listeditable.rb",
|
63
|
+
"lib/rbcurse/core/include/listscrollable.rb",
|
64
|
+
"lib/rbcurse/core/include/listselectable.rb",
|
65
|
+
"lib/rbcurse/core/include/multibuffer.rb",
|
66
|
+
"lib/rbcurse/core/include/orderedhash.rb",
|
67
|
+
"lib/rbcurse/core/include/ractionevent.rb",
|
68
|
+
"lib/rbcurse/core/include/rchangeevent.rb",
|
69
|
+
"lib/rbcurse/core/include/rhistory.rb",
|
70
|
+
"lib/rbcurse/core/include/rinputdataevent.rb",
|
71
|
+
"lib/rbcurse/core/include/vieditable.rb",
|
72
|
+
"lib/rbcurse/core/system/colormap.rb",
|
73
|
+
"lib/rbcurse/core/system/keyboard.rb",
|
74
|
+
"lib/rbcurse/core/system/keydefs.rb",
|
75
|
+
"lib/rbcurse/core/system/ncurses.rb",
|
76
|
+
"lib/rbcurse/core/system/panel.rb",
|
77
|
+
"lib/rbcurse/core/system/window.rb",
|
78
|
+
"lib/rbcurse/core/util/ansiparser.rb",
|
79
|
+
"lib/rbcurse/core/util/app.rb",
|
80
|
+
"lib/rbcurse/core/util/basestack.rb",
|
81
|
+
"lib/rbcurse/core/util/bottomline.rb",
|
82
|
+
"lib/rbcurse/core/util/colorparser.rb",
|
83
|
+
"lib/rbcurse/core/util/focusmanager.rb",
|
84
|
+
"lib/rbcurse/core/util/padreader.rb",
|
85
|
+
"lib/rbcurse/core/util/rcommandwindow.rb",
|
86
|
+
"lib/rbcurse/core/util/rdialogs.rb",
|
87
|
+
"lib/rbcurse/core/util/viewer.rb",
|
88
|
+
"lib/rbcurse/core/util/widgetshortcuts.rb",
|
89
|
+
"lib/rbcurse/core/widgets/applicationheader.rb",
|
90
|
+
"lib/rbcurse/core/widgets/box.rb",
|
91
|
+
"lib/rbcurse/core/widgets/divider.rb",
|
92
|
+
"lib/rbcurse/core/widgets/keylabelprinter.rb",
|
93
|
+
"lib/rbcurse/core/widgets/rcombo.rb",
|
94
|
+
"lib/rbcurse/core/widgets/rcontainer.rb",
|
95
|
+
"lib/rbcurse/core/widgets/rlink.rb",
|
96
|
+
"lib/rbcurse/core/widgets/rlist.rb",
|
97
|
+
"lib/rbcurse/core/widgets/rmenu.rb",
|
98
|
+
"lib/rbcurse/core/widgets/rmenulink.rb",
|
99
|
+
"lib/rbcurse/core/widgets/rmessagebox.rb",
|
100
|
+
"lib/rbcurse/core/widgets/rprogress.rb",
|
101
|
+
"lib/rbcurse/core/widgets/rtabbedpane.rb",
|
102
|
+
"lib/rbcurse/core/widgets/rtabbedwindow.rb",
|
103
|
+
"lib/rbcurse/core/widgets/rtextarea.rb",
|
104
|
+
"lib/rbcurse/core/widgets/rtextview.rb",
|
105
|
+
"lib/rbcurse/core/widgets/rtree.rb",
|
106
|
+
"lib/rbcurse/core/widgets/rwidget.rb",
|
107
|
+
"lib/rbcurse/core/widgets/scrollbar.rb",
|
108
|
+
"lib/rbcurse/core/widgets/statusline.rb",
|
109
|
+
"lib/rbcurse/core/widgets/tabular.rb",
|
110
|
+
"lib/rbcurse/core/widgets/tabularwidget.rb",
|
111
|
+
"lib/rbcurse/core/widgets/textpad.rb",
|
112
|
+
"lib/rbcurse/core/widgets/tree/treecellrenderer.rb",
|
113
|
+
"lib/rbcurse/core/widgets/tree/treemodel.rb",
|
114
|
+
"rbcurse-core.gemspec"
|
115
|
+
]
|
116
|
+
s.homepage = "https://github.com/rkumar/rbcurse-core"
|
117
|
+
s.require_paths = ["lib"]
|
118
|
+
s.rubyforge_project = "rbcurse"
|
119
|
+
s.rubygems_version = "1.8.10"
|
120
|
+
s.summary = "Ruby Ncurses Toolkit core infrastructure and widgets"
|
121
|
+
|
122
|
+
if s.respond_to? :specification_version then
|
123
|
+
s.specification_version = 3
|
124
|
+
|
125
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
126
|
+
s.add_runtime_dependency(%q<ffi-ncurses>, [">= 0.4.0"])
|
127
|
+
else
|
128
|
+
s.add_dependency(%q<ffi-ncurses>, [">= 0.4.0"])
|
129
|
+
end
|
130
|
+
else
|
131
|
+
s.add_dependency(%q<ffi-ncurses>, [">= 0.4.0"])
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
metadata
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbcurse-core
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
4
5
|
prerelease:
|
5
|
-
version: 0.0.0
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Rahul Kumar
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2011-12-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
16
15
|
name: ffi-ncurses
|
17
|
-
|
18
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &2232533180 !ruby/object:Gem::Requirement
|
19
17
|
none: false
|
20
|
-
requirements:
|
21
|
-
- -
|
22
|
-
- !ruby/object:Gem::Version
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
23
21
|
version: 0.4.0
|
24
22
|
type: :runtime
|
25
|
-
|
26
|
-
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *2232533180
|
25
|
+
description: Ruby curses/ncurses widgets for easy application development on text
|
26
|
+
terminals (ruby 1.9, 1.8)
|
27
27
|
email: sentinel1879@gmail.com
|
28
28
|
executables: []
|
29
|
-
|
30
29
|
extensions: []
|
31
|
-
|
32
|
-
extra_rdoc_files:
|
30
|
+
extra_rdoc_files:
|
33
31
|
- README.md
|
34
|
-
files:
|
32
|
+
files:
|
33
|
+
- CHANGELOG
|
35
34
|
- README.md
|
36
35
|
- VERSION
|
37
36
|
- examples/abasiclist.rb
|
38
37
|
- examples/alpmenu.rb
|
39
38
|
- examples/app.sample
|
40
39
|
- examples/atree.rb
|
40
|
+
- examples/bline.rb
|
41
41
|
- examples/common/file.rb
|
42
42
|
- examples/data/README.markdown
|
43
43
|
- examples/data/brew.txt
|
@@ -125,32 +125,29 @@ files:
|
|
125
125
|
- lib/rbcurse/core/widgets/textpad.rb
|
126
126
|
- lib/rbcurse/core/widgets/tree/treecellrenderer.rb
|
127
127
|
- lib/rbcurse/core/widgets/tree/treemodel.rb
|
128
|
-
|
128
|
+
- rbcurse-core.gemspec
|
129
|
+
homepage: https://github.com/rkumar/rbcurse-core
|
129
130
|
licenses: []
|
130
|
-
|
131
131
|
post_install_message:
|
132
132
|
rdoc_options: []
|
133
|
-
|
134
|
-
require_paths:
|
133
|
+
require_paths:
|
135
134
|
- lib
|
136
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
136
|
none: false
|
138
|
-
requirements:
|
139
|
-
- -
|
140
|
-
- !ruby/object:Gem::Version
|
141
|
-
version:
|
142
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ! '>='
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
142
|
none: false
|
144
|
-
requirements:
|
145
|
-
- -
|
146
|
-
- !ruby/object:Gem::Version
|
147
|
-
version:
|
143
|
+
requirements:
|
144
|
+
- - ! '>='
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0'
|
148
147
|
requirements: []
|
149
|
-
|
150
148
|
rubyforge_project: rbcurse
|
151
|
-
rubygems_version: 1.8.
|
149
|
+
rubygems_version: 1.8.10
|
152
150
|
signing_key:
|
153
151
|
specification_version: 3
|
154
152
|
summary: Ruby Ncurses Toolkit core infrastructure and widgets
|
155
153
|
test_files: []
|
156
|
-
|