rdialog 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -2,3 +2,8 @@
2
2
 
3
3
  + 1 major enhancement:
4
4
  + Initial release
5
+
6
+ +++ 0.1.1 2007-05-20
7
+
8
+ + 1 minor enhancement:
9
+ + Rescue system call error for blank input
@@ -2,7 +2,7 @@ module Rdialog #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/rdialog.rb CHANGED
@@ -226,8 +226,12 @@ class RDialog
226
226
  success = system(command)
227
227
 
228
228
  if success
229
- selected_string = tmp.readline
230
- tmp.close!
229
+ begin
230
+ selected_string = tmp.readline
231
+ rescue EOFError
232
+ selected_string = ""
233
+ end
234
+ tmp.close!
231
235
  return selected_string
232
236
  else
233
237
  tmp.close!
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>Ruby Dialog Interface</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rdialog"; return false'>
35
35
  Get Version
36
- <a href="http://rubyforge.org/projects/rdialog" class="numbers">0.0.1</a>
36
+ <a href="http://rubyforge.org/projects/rdialog" class="numbers">0.1.0</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;rdialog&#8217;</h1>
39
39
 
@@ -112,7 +112,7 @@ exec("ssh sweeper@" + selected_item)
112
112
 
113
113
  <p>Comments are welcome. Send an email to <a href="mailto:aleks.clark@gmail.com">Aleks Clark</a>.</p>
114
114
  <p class="coda">
115
- <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 4th May 2007<br>
115
+ <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 11th May 2007<br>
116
116
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
117
117
  </p>
118
118
  </div>
@@ -1,129 +1,129 @@
1
- body {
2
- background-color: #E1D1F1;
3
- font-family: "Georgia", sans-serif;
4
- font-size: 16px;
5
- line-height: 1.6em;
6
- padding: 1.6em 0 0 0;
7
- color: #333;
8
- }
9
- h1, h2, h3, h4, h5, h6 {
10
- color: #444;
11
- }
12
- h1 {
13
- font-family: sans-serif;
14
- font-weight: normal;
15
- font-size: 4em;
16
- line-height: 0.8em;
17
- letter-spacing: -0.1ex;
18
- margin: 5px;
19
- }
20
- li {
21
- padding: 0;
22
- margin: 0;
23
- list-style-type: square;
24
- }
25
- a {
26
- color: #5E5AFF;
27
- background-color: #DAC;
28
- font-weight: normal;
29
- text-decoration: underline;
30
- }
31
- blockquote {
32
- font-size: 90%;
33
- font-style: italic;
34
- border-left: 1px solid #111;
35
- padding-left: 1em;
36
- }
37
- .caps {
38
- font-size: 80%;
39
- }
40
-
41
- #main {
42
- width: 45em;
43
- padding: 0;
44
- margin: 0 auto;
45
- }
46
- .coda {
47
- text-align: right;
48
- color: #77f;
49
- font-size: smaller;
50
- }
51
-
52
- table {
53
- font-size: 90%;
54
- line-height: 1.4em;
55
- color: #ff8;
56
- background-color: #111;
57
- padding: 2px 10px 2px 10px;
58
- border-style: dashed;
59
- }
60
-
61
- th {
62
- color: #fff;
63
- }
64
-
65
- td {
66
- padding: 2px 10px 2px 10px;
67
- }
68
-
69
- .success {
70
- color: #0CC52B;
71
- }
72
-
73
- .failed {
74
- color: #E90A1B;
75
- }
76
-
77
- .unknown {
78
- color: #995000;
79
- }
80
- pre, code {
81
- font-family: monospace;
82
- font-size: 90%;
83
- line-height: 1.4em;
84
- color: #ff8;
85
- background-color: #111;
86
- padding: 2px 10px 2px 10px;
87
- }
88
- .comment { color: #aaa; font-style: italic; }
89
- .keyword { color: #eff; font-weight: bold; }
90
- .punct { color: #eee; font-weight: bold; }
91
- .symbol { color: #0bb; }
92
- .string { color: #6b4; }
93
- .ident { color: #ff8; }
94
- .constant { color: #66f; }
95
- .regex { color: #ec6; }
96
- .number { color: #F99; }
97
- .expr { color: #227; }
98
-
99
- #version {
100
- float: right;
101
- text-align: right;
102
- font-family: sans-serif;
103
- font-weight: normal;
104
- background-color: #B3ABFF;
105
- color: #141331;
106
- padding: 15px 20px 10px 20px;
107
- margin: 0 auto;
108
- margin-top: 15px;
109
- border: 3px solid #141331;
110
- }
111
-
112
- #version .numbers {
113
- display: block;
114
- font-size: 4em;
115
- line-height: 0.8em;
116
- letter-spacing: -0.1ex;
117
- }
118
-
119
- #version a {
120
- text-decoration: none;
121
- color: #141331;
122
- background-color: #B3ABFF;
123
- }
124
-
125
- .clickable {
126
- cursor: pointer;
127
- cursor: hand;
128
- }
129
-
1
+ body {
2
+ background-color: #E1D1F1;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #444;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ li {
21
+ padding: 0;
22
+ margin: 0;
23
+ list-style-type: square;
24
+ }
25
+ a {
26
+ color: #5E5AFF;
27
+ background-color: #DAC;
28
+ font-weight: normal;
29
+ text-decoration: underline;
30
+ }
31
+ blockquote {
32
+ font-size: 90%;
33
+ font-style: italic;
34
+ border-left: 1px solid #111;
35
+ padding-left: 1em;
36
+ }
37
+ .caps {
38
+ font-size: 80%;
39
+ }
40
+
41
+ #main {
42
+ width: 45em;
43
+ padding: 0;
44
+ margin: 0 auto;
45
+ }
46
+ .coda {
47
+ text-align: right;
48
+ color: #77f;
49
+ font-size: smaller;
50
+ }
51
+
52
+ table {
53
+ font-size: 90%;
54
+ line-height: 1.4em;
55
+ color: #ff8;
56
+ background-color: #111;
57
+ padding: 2px 10px 2px 10px;
58
+ border-style: dashed;
59
+ }
60
+
61
+ th {
62
+ color: #fff;
63
+ }
64
+
65
+ td {
66
+ padding: 2px 10px 2px 10px;
67
+ }
68
+
69
+ .success {
70
+ color: #0CC52B;
71
+ }
72
+
73
+ .failed {
74
+ color: #E90A1B;
75
+ }
76
+
77
+ .unknown {
78
+ color: #995000;
79
+ }
80
+ pre, code {
81
+ font-family: monospace;
82
+ font-size: 90%;
83
+ line-height: 1.4em;
84
+ color: #ff8;
85
+ background-color: #111;
86
+ padding: 2px 10px 2px 10px;
87
+ }
88
+ .comment { color: #aaa; font-style: italic; }
89
+ .keyword { color: #eff; font-weight: bold; }
90
+ .punct { color: #eee; font-weight: bold; }
91
+ .symbol { color: #0bb; }
92
+ .string { color: #6b4; }
93
+ .ident { color: #ff8; }
94
+ .constant { color: #66f; }
95
+ .regex { color: #ec6; }
96
+ .number { color: #F99; }
97
+ .expr { color: #227; }
98
+
99
+ #version {
100
+ float: right;
101
+ text-align: right;
102
+ font-family: sans-serif;
103
+ font-weight: normal;
104
+ background-color: #B3ABFF;
105
+ color: #141331;
106
+ padding: 15px 20px 10px 20px;
107
+ margin: 0 auto;
108
+ margin-top: 15px;
109
+ border: 3px solid #141331;
110
+ }
111
+
112
+ #version .numbers {
113
+ display: block;
114
+ font-size: 4em;
115
+ line-height: 0.8em;
116
+ letter-spacing: -0.1ex;
117
+ }
118
+
119
+ #version a {
120
+ text-decoration: none;
121
+ color: #141331;
122
+ background-color: #B3ABFF;
123
+ }
124
+
125
+ .clickable {
126
+ cursor: pointer;
127
+ cursor: hand;
128
+ }
129
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0
2
+ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: rdialog
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
7
- date: 2007-05-07 00:00:00 -04:00
6
+ version: 0.1.1
7
+ date: 2007-05-20 00:00:00.000000 -04:00
8
8
  summary: A gem providing a ruby interface to the n-curses dialog generator dialog
9
9
  require_paths:
10
- - lib
10
+ - lib
11
11
  email: aleks.clark@gmail.com
12
12
  homepage: http://rdialog.rubyforge.org
13
13
  rubyforge_project: rdialog
@@ -18,44 +18,39 @@ bindir: bin
18
18
  has_rdoc: true
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
20
20
  requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
21
+ -
22
+ - ">"
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.0
24
25
  version:
25
26
  platform: ruby
26
27
  signing_key:
27
28
  cert_chain:
28
29
  post_install_message:
29
30
  authors:
30
- - Aleks Clarks
31
+ - Aleks Clarks
31
32
  files:
32
- - History.txt
33
- - Manifest.txt
34
- - README.txt
35
- - Rakefile
36
- - lib/rdialog.rb
37
- - lib/rdialog/version.rb
38
- - scripts/txt2html
39
- - setup.rb
40
- - test/test_helper.rb
41
- - test/test_rdialog.rb
42
- - website/index.html
43
- - website/index.txt
44
- - website/javascripts/rounded_corners_lite.inc.js
45
- - website/stylesheets/screen.css
46
- - website/template.rhtml
33
+ - History.txt
34
+ - Manifest.txt
35
+ - README.txt
36
+ - Rakefile
37
+ - lib/rdialog.rb
38
+ - lib/rdialog/version.rb
39
+ - scripts/txt2html
40
+ - setup.rb
41
+ - test/test_helper.rb
42
+ - test/test_rdialog.rb
43
+ - website/index.html
44
+ - website/index.txt
45
+ - website/javascripts/rounded_corners_lite.inc.js
46
+ - website/stylesheets/screen.css
47
+ - website/template.rhtml
47
48
  test_files:
48
- - test/test_rdialog.rb
49
- - test/test_helper.rb
49
+ - test/test_rdialog.rb
50
+ - test/test_helper.rb
50
51
  rdoc_options: []
51
-
52
52
  extra_rdoc_files: []
53
-
54
53
  executables: []
55
-
56
54
  extensions: []
57
-
58
55
  requirements: []
59
-
60
- dependencies: []
61
-
56
+ dependencies: []