highline 1.0.1 → 1.0.2
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/CHANGELOG +8 -0
- data/README +1 -1
- data/Rakefile +42 -41
- data/TODO +1 -1
- data/examples/ansi_colors.rb +15 -9
- data/examples/asking_for_arrays.rb +1 -1
- data/examples/basic_usage.rb +50 -50
- data/examples/menus.rb +28 -28
- data/examples/trapping_eof.rb +22 -0
- data/examples/using_readline.rb +5 -5
- data/lib/highline.rb +596 -569
- data/lib/highline/import.rb +2 -2
- data/lib/highline/menu.rb +356 -358
- data/lib/highline/question.rb +406 -409
- data/test/tc_highline.rb +739 -727
- data/test/tc_import.rb +12 -12
- data/test/tc_menu.rb +343 -343
- metadata +49 -45
metadata
CHANGED
@@ -1,70 +1,74 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: highline
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.0.
|
7
|
-
date:
|
6
|
+
version: 1.0.2
|
7
|
+
date: 2006-02-20 00:00:00 -06:00
|
8
8
|
summary: HighLine is a high-level line oriented console interface.
|
9
9
|
require_paths:
|
10
|
-
|
10
|
+
- lib
|
11
11
|
email: james@grayproductions.net
|
12
12
|
homepage: http://highline.rubyforge.org
|
13
13
|
rubyforge_project: highline
|
14
|
-
description: "A \"high-level line oriented\" input/output library that grew out of my solution
|
15
|
-
to Ruby Quiz #29. This library attempts to make standard console input and
|
16
|
-
output robust and painless."
|
14
|
+
description: "A \"high-level line oriented\" input/output library that grew out of my solution to Ruby Quiz #29. This library attempts to make standard console input and output robust and painless."
|
17
15
|
autorequire: highline
|
18
16
|
default_executable:
|
19
17
|
bindir: bin
|
20
18
|
has_rdoc: true
|
21
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
22
20
|
requirements:
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
27
24
|
version:
|
28
25
|
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
29
28
|
authors:
|
30
|
-
|
29
|
+
- James Edward Gray II
|
31
30
|
files:
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
31
|
+
- examples/ansi_colors.rb
|
32
|
+
- examples/asking_for_arrays.rb
|
33
|
+
- examples/basic_usage.rb
|
34
|
+
- examples/menus.rb
|
35
|
+
- examples/page_and_wrap.rb
|
36
|
+
- examples/password.rb
|
37
|
+
- examples/trapping_eof.rb
|
38
|
+
- examples/using_readline.rb
|
39
|
+
- lib/highline.rb
|
40
|
+
- lib/highline/import.rb
|
41
|
+
- lib/highline/menu.rb
|
42
|
+
- lib/highline/question.rb
|
43
|
+
- test/tc_highline.rb
|
44
|
+
- test/tc_import.rb
|
45
|
+
- test/tc_menu.rb
|
46
|
+
- test/ts_all.rb
|
47
|
+
- Rakefile
|
48
|
+
- setup.rb
|
49
|
+
- README
|
50
|
+
- INSTALL
|
51
|
+
- TODO
|
52
|
+
- CHANGELOG
|
53
|
+
- LICENSE
|
54
54
|
test_files:
|
55
|
-
|
55
|
+
- test/ts_all.rb
|
56
56
|
rdoc_options:
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
57
|
+
- --title
|
58
|
+
- HighLine Documentation
|
59
|
+
- --main
|
60
|
+
- README
|
61
61
|
extra_rdoc_files:
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
62
|
+
- README
|
63
|
+
- INSTALL
|
64
|
+
- TODO
|
65
|
+
- CHANGELOG
|
66
|
+
- LICENSE
|
67
67
|
executables: []
|
68
|
+
|
68
69
|
extensions: []
|
70
|
+
|
69
71
|
requirements: []
|
70
|
-
|
72
|
+
|
73
|
+
dependencies: []
|
74
|
+
|