highline-sgonyea 1.6.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/.gitignore +2 -0
  2. data/AUTHORS +3 -0
  3. data/CHANGELOG +308 -0
  4. data/COPYING +340 -0
  5. data/INSTALL +55 -0
  6. data/LICENSE +7 -0
  7. data/README.rdoc +63 -0
  8. data/Rakefile +50 -0
  9. data/TODO +6 -0
  10. data/examples/ansi_colors.rb +36 -0
  11. data/examples/asking_for_arrays.rb +16 -0
  12. data/examples/basic_usage.rb +73 -0
  13. data/examples/color_scheme.rb +30 -0
  14. data/examples/limit.rb +10 -0
  15. data/examples/menus.rb +63 -0
  16. data/examples/overwrite.rb +17 -0
  17. data/examples/page_and_wrap.rb +320 -0
  18. data/examples/password.rb +5 -0
  19. data/examples/repeat_entry.rb +19 -0
  20. data/examples/trapping_eof.rb +20 -0
  21. data/examples/using_readline.rb +15 -0
  22. data/highline.gemspec +36 -0
  23. data/lib/highline.rb +1000 -0
  24. data/lib/highline/color_scheme.rb +134 -0
  25. data/lib/highline/compatibility.rb +16 -0
  26. data/lib/highline/import.rb +41 -0
  27. data/lib/highline/menu.rb +398 -0
  28. data/lib/highline/question.rb +472 -0
  29. data/lib/highline/simulate.rb +48 -0
  30. data/lib/highline/string_extensions.rb +131 -0
  31. data/lib/highline/style.rb +181 -0
  32. data/lib/highline/system_extensions.rb +186 -0
  33. data/setup.rb +1360 -0
  34. data/site/.cvsignore +1 -0
  35. data/site/highline.css +65 -0
  36. data/site/images/logo.png +0 -0
  37. data/site/index.html +58 -0
  38. data/test/string_methods.rb +32 -0
  39. data/test/tc_color_scheme.rb +96 -0
  40. data/test/tc_highline.rb +1027 -0
  41. data/test/tc_import.rb +52 -0
  42. data/test/tc_menu.rb +427 -0
  43. data/test/tc_string_extension.rb +20 -0
  44. data/test/tc_string_highline.rb +38 -0
  45. data/test/tc_style.rb +567 -0
  46. data/test/ts_all.rb +16 -0
  47. metadata +118 -0
data/test/ts_all.rb ADDED
@@ -0,0 +1,16 @@
1
+ # ts_all.rb
2
+ #
3
+ # Created by James Edward Gray II on 2005-04-26.
4
+ # Copyright 2005 Gray Productions. All rights reserved.
5
+ #
6
+ # This is Free Software. See LICENSE and COPYING for details.
7
+
8
+ require "test/unit"
9
+
10
+ require "tc_highline"
11
+ require "tc_import"
12
+ require "tc_menu"
13
+ require "tc_style"
14
+ require "tc_color_scheme"
15
+ require "tc_string_highline"
16
+ require "tc_string_extension"
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: highline-sgonyea
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.6.12
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - James Edward Gray II
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-06-13 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ! 'A high-level IO library that provides validation, type conversion,
15
+ and more for
16
+
17
+ command-line interfaces. HighLine also includes a complete menu system that can
18
+
19
+ crank out anything from simple list selection to complete shells with just
20
+
21
+ minutes of work.
22
+
23
+ '
24
+ email: james@graysoftinc.com
25
+ executables: []
26
+ extensions: []
27
+ extra_rdoc_files:
28
+ - README.rdoc
29
+ - INSTALL
30
+ - TODO
31
+ - CHANGELOG
32
+ - LICENSE
33
+ files:
34
+ - .gitignore
35
+ - AUTHORS
36
+ - CHANGELOG
37
+ - COPYING
38
+ - INSTALL
39
+ - LICENSE
40
+ - README.rdoc
41
+ - Rakefile
42
+ - TODO
43
+ - doc/.cvsignore
44
+ - examples/ansi_colors.rb
45
+ - examples/asking_for_arrays.rb
46
+ - examples/basic_usage.rb
47
+ - examples/color_scheme.rb
48
+ - examples/limit.rb
49
+ - examples/menus.rb
50
+ - examples/overwrite.rb
51
+ - examples/page_and_wrap.rb
52
+ - examples/password.rb
53
+ - examples/repeat_entry.rb
54
+ - examples/trapping_eof.rb
55
+ - examples/using_readline.rb
56
+ - highline.gemspec
57
+ - lib/highline.rb
58
+ - lib/highline/color_scheme.rb
59
+ - lib/highline/compatibility.rb
60
+ - lib/highline/import.rb
61
+ - lib/highline/menu.rb
62
+ - lib/highline/question.rb
63
+ - lib/highline/simulate.rb
64
+ - lib/highline/string_extensions.rb
65
+ - lib/highline/style.rb
66
+ - lib/highline/system_extensions.rb
67
+ - setup.rb
68
+ - site/.cvsignore
69
+ - site/highline.css
70
+ - site/images/logo.png
71
+ - site/index.html
72
+ - test/string_methods.rb
73
+ - test/tc_color_scheme.rb
74
+ - test/tc_highline.rb
75
+ - test/tc_import.rb
76
+ - test/tc_menu.rb
77
+ - test/tc_string_extension.rb
78
+ - test/tc_string_highline.rb
79
+ - test/tc_style.rb
80
+ - test/ts_all.rb
81
+ homepage: http://highline.rubyforge.org
82
+ licenses: []
83
+ post_install_message:
84
+ rdoc_options:
85
+ - --title
86
+ - HighLine Documentation
87
+ - --main
88
+ - README
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ none: false
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ! '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project: highline
105
+ rubygems_version: 1.8.23
106
+ signing_key:
107
+ specification_version: 3
108
+ summary: HighLine is a high-level command-line IO library.
109
+ test_files:
110
+ - test/string_methods.rb
111
+ - test/tc_color_scheme.rb
112
+ - test/tc_highline.rb
113
+ - test/tc_import.rb
114
+ - test/tc_menu.rb
115
+ - test/tc_string_extension.rb
116
+ - test/tc_string_highline.rb
117
+ - test/tc_style.rb
118
+ - test/ts_all.rb