rdialogy 0.1.0
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/History.txt +6 -0
- data/Manifest.txt +47 -0
- data/README.txt +60 -0
- data/Rakefile +19 -0
- data/examples/calendar.rb +5 -0
- data/examples/checklist.rb +8 -0
- data/examples/dselect.rb +5 -0
- data/examples/form.rb +11 -0
- data/examples/gauge.rb +17 -0
- data/examples/inputmenu.rb +9 -0
- data/examples/menu.rb +9 -0
- data/examples/message_box.rb +5 -0
- data/examples/mixedgauge.rb +21 -0
- data/examples/passwordbox.rb +0 -0
- data/lib/rdialogy/base.rb +67 -0
- data/lib/rdialogy/calendar.rb +46 -0
- data/lib/rdialogy/checklist.rb +56 -0
- data/lib/rdialogy/dselect.rb +39 -0
- data/lib/rdialogy/editbox.rb +31 -0
- data/lib/rdialogy/filepath_widget.rb +30 -0
- data/lib/rdialogy/form.rb +67 -0
- data/lib/rdialogy/form_field.rb +8 -0
- data/lib/rdialogy/fselect.rb +35 -0
- data/lib/rdialogy/gauge.rb +56 -0
- data/lib/rdialogy/infobox.rb +10 -0
- data/lib/rdialogy/inputbox.rb +16 -0
- data/lib/rdialogy/inputmenu.rb +41 -0
- data/lib/rdialogy/menu.rb +22 -0
- data/lib/rdialogy/menu_item.rb +2 -0
- data/lib/rdialogy/message_box.rb +10 -0
- data/lib/rdialogy/mixedgauge.rb +32 -0
- data/lib/rdialogy/passwordbox.rb +15 -0
- data/lib/rdialogy.rb +21 -0
- data/spec/base_spec.rb +30 -0
- data/spec/calendar_spec.rb +41 -0
- data/spec/checklist_spec.rb +41 -0
- data/spec/dselect_spec.rb +38 -0
- data/spec/form_spec.rb +47 -0
- data/spec/fselect_spec.rb +11 -0
- data/spec/infobox_spec.rb +18 -0
- data/spec/inputbox_spec.rb +30 -0
- data/spec/inputmenu_spec.rb +56 -0
- data/spec/menu_spec.rb +41 -0
- data/spec/message_box_spec.rb +18 -0
- data/spec/mixedgauge_spec.rb +0 -0
- data/spec/passwordbox_spec.rb +29 -0
- data/spec/spec_helper.rb +6 -0
- metadata +139 -0
metadata
ADDED
@@ -0,0 +1,139 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rdialogy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Ross Paine
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-05-06 00:00:00 +10:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rubyforge
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 2
|
29
|
+
- 0
|
30
|
+
- 4
|
31
|
+
version: 2.0.4
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: hoe
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 2
|
43
|
+
- 6
|
44
|
+
- 0
|
45
|
+
version: 2.6.0
|
46
|
+
type: :development
|
47
|
+
version_requirements: *id002
|
48
|
+
description: A wrapper for dialog
|
49
|
+
email:
|
50
|
+
- paine@bur.st
|
51
|
+
executables: []
|
52
|
+
|
53
|
+
extensions: []
|
54
|
+
|
55
|
+
extra_rdoc_files:
|
56
|
+
- History.txt
|
57
|
+
- Manifest.txt
|
58
|
+
- README.txt
|
59
|
+
files:
|
60
|
+
- History.txt
|
61
|
+
- Manifest.txt
|
62
|
+
- Rakefile
|
63
|
+
- README.txt
|
64
|
+
- examples/calendar.rb
|
65
|
+
- examples/checklist.rb
|
66
|
+
- examples/dselect.rb
|
67
|
+
- examples/form.rb
|
68
|
+
- examples/gauge.rb
|
69
|
+
- examples/inputmenu.rb
|
70
|
+
- examples/menu.rb
|
71
|
+
- examples/message_box.rb
|
72
|
+
- examples/mixedgauge.rb
|
73
|
+
- examples/passwordbox.rb
|
74
|
+
- lib/rdialogy/base.rb
|
75
|
+
- lib/rdialogy/calendar.rb
|
76
|
+
- lib/rdialogy/checklist.rb
|
77
|
+
- lib/rdialogy/dselect.rb
|
78
|
+
- lib/rdialogy/editbox.rb
|
79
|
+
- lib/rdialogy/filepath_widget.rb
|
80
|
+
- lib/rdialogy/form_field.rb
|
81
|
+
- lib/rdialogy/form.rb
|
82
|
+
- lib/rdialogy/fselect.rb
|
83
|
+
- lib/rdialogy/gauge.rb
|
84
|
+
- lib/rdialogy/infobox.rb
|
85
|
+
- lib/rdialogy/inputbox.rb
|
86
|
+
- lib/rdialogy/inputmenu.rb
|
87
|
+
- lib/rdialogy/menu_item.rb
|
88
|
+
- lib/rdialogy/menu.rb
|
89
|
+
- lib/rdialogy/message_box.rb
|
90
|
+
- lib/rdialogy/mixedgauge.rb
|
91
|
+
- lib/rdialogy/passwordbox.rb
|
92
|
+
- lib/rdialogy.rb
|
93
|
+
- spec/base_spec.rb
|
94
|
+
- spec/calendar_spec.rb
|
95
|
+
- spec/checklist_spec.rb
|
96
|
+
- spec/dselect_spec.rb
|
97
|
+
- spec/form_spec.rb
|
98
|
+
- spec/fselect_spec.rb
|
99
|
+
- spec/infobox_spec.rb
|
100
|
+
- spec/inputbox_spec.rb
|
101
|
+
- spec/inputmenu_spec.rb
|
102
|
+
- spec/menu_spec.rb
|
103
|
+
- spec/message_box_spec.rb
|
104
|
+
- spec/mixedgauge_spec.rb
|
105
|
+
- spec/passwordbox_spec.rb
|
106
|
+
- spec/spec_helper.rb
|
107
|
+
has_rdoc: true
|
108
|
+
homepage: http://rdialogy.rubyforge.com
|
109
|
+
licenses: []
|
110
|
+
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options:
|
113
|
+
- --main
|
114
|
+
- README.txt
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
segments:
|
122
|
+
- 0
|
123
|
+
version: "0"
|
124
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
segments:
|
129
|
+
- 0
|
130
|
+
version: "0"
|
131
|
+
requirements: []
|
132
|
+
|
133
|
+
rubyforge_project: rdialogy
|
134
|
+
rubygems_version: 1.3.6
|
135
|
+
signing_key:
|
136
|
+
specification_version: 3
|
137
|
+
summary: A wrapper for dialog
|
138
|
+
test_files: []
|
139
|
+
|