dialog 0.1.0 → 0.1.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/README +2 -2
- data/lib/base.rb +1 -1
- metadata +40 -38
data/README
CHANGED
@@ -18,7 +18,7 @@ need to install these seperately</em> (see below).
|
|
18
18
|
|
19
19
|
== License
|
20
20
|
|
21
|
-
dialog is Copyright (c) 2006 Martin Landers
|
21
|
+
dialog is Copyright (c) 2006-2008 Martin Landers. It is free software,
|
22
22
|
and may be redistributed under the terms of the GNU General Public License.
|
23
23
|
See COPYING.
|
24
24
|
|
@@ -412,4 +412,4 @@ dialog from there, including the trunk from subversion. Please report bugs or
|
|
412
412
|
requests for enhancement to dialog's rubyforge
|
413
413
|
tracker[http://rubyforge.org/tracker/?group_id=2153]. If possible, please
|
414
414
|
submit patches. Patches should be generated by "diff -u" or "svn diff" and
|
415
|
-
state against which release/svn revision they were made.
|
415
|
+
state against which release/svn revision they were made.
|
data/lib/base.rb
CHANGED
@@ -135,7 +135,7 @@ public
|
|
135
135
|
# handling of common options, assembling the command-line
|
136
136
|
# and invoking the dialog command.
|
137
137
|
#
|
138
|
-
# Author: Martin Landers <
|
138
|
+
# Author: Martin Landers <elk@treibgut.net>
|
139
139
|
class Base
|
140
140
|
|
141
141
|
attr_reader :output
|
metadata
CHANGED
@@ -1,64 +1,66 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.
|
2
|
+
rubygems_version: 0.9.4
|
3
3
|
specification_version: 1
|
4
4
|
name: dialog
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.1.
|
7
|
-
date:
|
6
|
+
version: 0.1.1
|
7
|
+
date: 2008-03-03 00:00:00 +01:00
|
8
8
|
summary: Library for building ncurses-based dialogs by interfacing with dialog(1).
|
9
9
|
require_paths:
|
10
|
-
|
11
|
-
email:
|
10
|
+
- lib
|
11
|
+
email: elk@treibgut.net
|
12
12
|
homepage: http://dialog.rubyforge.org/
|
13
13
|
rubyforge_project: dialog
|
14
|
-
description:
|
15
|
-
with the manual command-line fiddling, allowing ruby programs operating in a
|
16
|
-
commandline-environment to comfortably obtain user input. Ncurses dialogs the
|
17
|
-
easy way!"
|
14
|
+
description: Dialog is a ruby gem for interfacing with the dialog(1) program. It does away with the manual command-line fiddling, allowing ruby programs operating in a commandline-environment to comfortably obtain user input. Ncurses dialogs the easy way!
|
18
15
|
autorequire:
|
19
16
|
default_executable:
|
20
17
|
bindir: bin
|
21
18
|
has_rdoc: true
|
22
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
23
20
|
requirements:
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
28
24
|
version:
|
29
25
|
platform: ruby
|
30
26
|
signing_key:
|
31
27
|
cert_chain:
|
28
|
+
post_install_message:
|
32
29
|
authors:
|
33
|
-
|
30
|
+
- Martin Landers <elk@treibgut.net>
|
34
31
|
files:
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
32
|
+
- lib/msgbox.rb
|
33
|
+
- lib/calendar.rb
|
34
|
+
- lib/inputmenu.rb
|
35
|
+
- lib/passwordbox.rb
|
36
|
+
- lib/gauge.rb
|
37
|
+
- lib/timebox.rb
|
38
|
+
- lib/tailbox.rb
|
39
|
+
- lib/form.rb
|
40
|
+
- lib/fselect.rb
|
41
|
+
- lib/util.rb
|
42
|
+
- lib/yesno.rb
|
43
|
+
- lib/textbox.rb
|
44
|
+
- lib/inputbox.rb
|
45
|
+
- lib/dialog.rb
|
46
|
+
- lib/infobox.rb
|
47
|
+
- lib/tailboxbg.rb
|
48
|
+
- lib/menu.rb
|
49
|
+
- lib/checklist.rb
|
50
|
+
- lib/radiolist.rb
|
51
|
+
- lib/base.rb
|
52
|
+
- README
|
56
53
|
test_files: []
|
54
|
+
|
57
55
|
rdoc_options: []
|
56
|
+
|
58
57
|
extra_rdoc_files:
|
59
|
-
|
58
|
+
- README
|
60
59
|
executables: []
|
60
|
+
|
61
61
|
extensions: []
|
62
|
+
|
62
63
|
requirements:
|
63
|
-
|
64
|
-
dependencies: []
|
64
|
+
- none
|
65
|
+
dependencies: []
|
66
|
+
|