mrdialog 1.0.3 → 1.0.5
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.
- checksums.yaml +5 -5
- data/ChangeLog.md +21 -1
- data/Gemfile +3 -2
- data/LICENSE.txt +1 -1
- data/README.md +137 -76
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/lib/mrdialog/mrdialog.rb +89 -78
- data/mrdialog.gemspec +124 -0
- data/pkg/md5.txt +1 -1
- data/pkg/mrdialog-1.0.5.gem +0 -0
- data/samples/extra_button/buildlist.rb +89 -0
- data/samples/extra_button/calendar.rb +45 -0
- data/samples/extra_button/checklist.rb +84 -0
- data/samples/extra_button/form1.rb +101 -0
- data/samples/extra_button/fselect.rb +36 -0
- data/samples/extra_button/inputbox.rb +48 -0
- data/samples/extra_button/menubox.rb +85 -0
- data/samples/extra_button/password.rb +44 -0
- data/samples/extra_button/radiolist.rb +86 -0
- data/samples/extra_button/timebox.rb +43 -0
- data/samples/extra_button/treeview.rb +112 -0
- data/samples/run_all.rb +1 -1
- data/samples/yesno.rb +1 -1
- metadata +40 -16
- data/Gemfile.lock +0 -82
- data/pkg/mrdialog-1.0.3.gem +0 -0
data/samples/yesno.rb
CHANGED
@@ -23,7 +23,7 @@ questions that have an answer of either yes or no.
|
|
23
23
|
BTW, do you notice that long lines will be automatically
|
24
24
|
wrapped around so that they can fit in the box? You can
|
25
25
|
also control line breaking explicitly by inserting
|
26
|
-
|
26
|
+
"backslash n" at any place you like, but in this case,
|
27
27
|
auto wrap around will be disabled and you will have to
|
28
28
|
control line breaking yourself.
|
29
29
|
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mrdialog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aleks Clark
|
8
8
|
- Muhammad Muquit
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-03-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: shoulda
|
@@ -43,30 +43,30 @@ dependencies:
|
|
43
43
|
name: bundler
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - "
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: '
|
48
|
+
version: '2.0'
|
49
49
|
type: :development
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - "
|
53
|
+
- - ">="
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: '
|
55
|
+
version: '2.0'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
|
-
name:
|
57
|
+
name: juwelier
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 2.0
|
62
|
+
version: 2.1.0
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 2.0
|
69
|
+
version: 2.1.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: simplecov
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,6 +81,20 @@ dependencies:
|
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: '0'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: test-unit
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
84
98
|
description: "A ruby gem for ncurses dialog program.\n This gem is based on rdialog
|
85
99
|
(http://rdialog.rubyforge.org/) by\n Aleks Clark. I added support for missing
|
86
100
|
widgets, fixed \n bugs and wrote the sample apps. I am \n also renaming
|
@@ -97,19 +111,30 @@ files:
|
|
97
111
|
- ".document"
|
98
112
|
- ChangeLog.md
|
99
113
|
- Gemfile
|
100
|
-
- Gemfile.lock
|
101
114
|
- LICENSE.txt
|
102
115
|
- README.md
|
103
116
|
- Rakefile
|
104
117
|
- VERSION
|
105
118
|
- lib/mrdialog.rb
|
106
119
|
- lib/mrdialog/mrdialog.rb
|
120
|
+
- mrdialog.gemspec
|
107
121
|
- pkg/md5.txt
|
108
|
-
- pkg/mrdialog-1.0.
|
122
|
+
- pkg/mrdialog-1.0.5.gem
|
109
123
|
- samples/buildlist.rb
|
110
124
|
- samples/calendar.rb
|
111
125
|
- samples/checklist.rb
|
112
126
|
- samples/editbox.rb
|
127
|
+
- samples/extra_button/buildlist.rb
|
128
|
+
- samples/extra_button/calendar.rb
|
129
|
+
- samples/extra_button/checklist.rb
|
130
|
+
- samples/extra_button/form1.rb
|
131
|
+
- samples/extra_button/fselect.rb
|
132
|
+
- samples/extra_button/inputbox.rb
|
133
|
+
- samples/extra_button/menubox.rb
|
134
|
+
- samples/extra_button/password.rb
|
135
|
+
- samples/extra_button/radiolist.rb
|
136
|
+
- samples/extra_button/timebox.rb
|
137
|
+
- samples/extra_button/treeview.rb
|
113
138
|
- samples/form1.rb
|
114
139
|
- samples/form2.rb
|
115
140
|
- samples/form3.rb
|
@@ -169,7 +194,7 @@ homepage: http://github.com/muquit/mrdialog
|
|
169
194
|
licenses:
|
170
195
|
- MIT
|
171
196
|
metadata: {}
|
172
|
-
post_install_message:
|
197
|
+
post_install_message:
|
173
198
|
rdoc_options: []
|
174
199
|
require_paths:
|
175
200
|
- lib
|
@@ -184,9 +209,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
184
209
|
- !ruby/object:Gem::Version
|
185
210
|
version: '0'
|
186
211
|
requirements: []
|
187
|
-
|
188
|
-
|
189
|
-
signing_key:
|
212
|
+
rubygems_version: 3.2.3
|
213
|
+
signing_key:
|
190
214
|
specification_version: 4
|
191
215
|
summary: A ruby gem for ncurses dialog program, based on the gem rdialog
|
192
216
|
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
activesupport (4.0.4)
|
5
|
-
i18n (~> 0.6, >= 0.6.9)
|
6
|
-
minitest (~> 4.2)
|
7
|
-
multi_json (~> 1.3)
|
8
|
-
thread_safe (~> 0.1)
|
9
|
-
tzinfo (~> 0.3.37)
|
10
|
-
addressable (2.3.6)
|
11
|
-
atomic (1.1.16)
|
12
|
-
builder (3.2.2)
|
13
|
-
descendants_tracker (0.0.4)
|
14
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
15
|
-
docile (1.1.3)
|
16
|
-
faraday (0.9.0)
|
17
|
-
multipart-post (>= 1.2, < 3)
|
18
|
-
git (1.2.6)
|
19
|
-
github_api (0.11.3)
|
20
|
-
addressable (~> 2.3)
|
21
|
-
descendants_tracker (~> 0.0.1)
|
22
|
-
faraday (~> 0.8, < 0.10)
|
23
|
-
hashie (>= 1.2)
|
24
|
-
multi_json (>= 1.7.5, < 2.0)
|
25
|
-
nokogiri (~> 1.6.0)
|
26
|
-
oauth2
|
27
|
-
hashie (2.0.5)
|
28
|
-
highline (1.6.21)
|
29
|
-
i18n (0.6.9)
|
30
|
-
jeweler (2.0.1)
|
31
|
-
builder
|
32
|
-
bundler (>= 1.0)
|
33
|
-
git (>= 1.2.5)
|
34
|
-
github_api
|
35
|
-
highline (>= 1.6.15)
|
36
|
-
nokogiri (>= 1.5.10)
|
37
|
-
rake
|
38
|
-
rdoc
|
39
|
-
json (1.8.1)
|
40
|
-
jwt (0.1.11)
|
41
|
-
multi_json (>= 1.5)
|
42
|
-
mini_portile (0.5.3)
|
43
|
-
minitest (4.7.5)
|
44
|
-
multi_json (1.9.2)
|
45
|
-
multi_xml (0.5.5)
|
46
|
-
multipart-post (2.0.0)
|
47
|
-
nokogiri (1.6.1)
|
48
|
-
mini_portile (~> 0.5.0)
|
49
|
-
oauth2 (0.9.3)
|
50
|
-
faraday (>= 0.8, < 0.10)
|
51
|
-
jwt (~> 0.1.8)
|
52
|
-
multi_json (~> 1.3)
|
53
|
-
multi_xml (~> 0.5)
|
54
|
-
rack (~> 1.2)
|
55
|
-
rack (1.5.2)
|
56
|
-
rake (10.2.2)
|
57
|
-
rdoc (3.12.2)
|
58
|
-
json (~> 1.4)
|
59
|
-
shoulda (3.5.0)
|
60
|
-
shoulda-context (~> 1.0, >= 1.0.1)
|
61
|
-
shoulda-matchers (>= 1.4.1, < 3.0)
|
62
|
-
shoulda-context (1.2.0)
|
63
|
-
shoulda-matchers (2.5.0)
|
64
|
-
activesupport (>= 3.0.0)
|
65
|
-
simplecov (0.8.2)
|
66
|
-
docile (~> 1.1.0)
|
67
|
-
multi_json
|
68
|
-
simplecov-html (~> 0.8.0)
|
69
|
-
simplecov-html (0.8.0)
|
70
|
-
thread_safe (0.3.1)
|
71
|
-
atomic (>= 1.1.7, < 2)
|
72
|
-
tzinfo (0.3.39)
|
73
|
-
|
74
|
-
PLATFORMS
|
75
|
-
ruby
|
76
|
-
|
77
|
-
DEPENDENCIES
|
78
|
-
bundler (~> 1.0)
|
79
|
-
jeweler (~> 2.0.1)
|
80
|
-
rdoc (~> 3.12)
|
81
|
-
shoulda
|
82
|
-
simplecov
|
data/pkg/mrdialog-1.0.3.gem
DELETED
Binary file
|