clone 1.0.0.alpha → 1.0.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (189) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/Gemfile +1 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +22 -1
  6. data/VERSION +1 -1
  7. data/bin/clone +7 -0
  8. data/clone.gemspec +4 -0
  9. data/docs/readme +16 -0
  10. data/docs/readme.txt +5 -0
  11. data/lib/clone.rb +13 -2
  12. data/lib/clone/config/config.rb +19 -0
  13. data/lib/clone/config/config.yml +22 -0
  14. data/lib/clone/config/default_config.yml +20 -0
  15. data/lib/clone/config/require.rb +3 -0
  16. data/lib/clone/config/version.rb +10 -0
  17. data/lib/clone/config/yml.rb +22 -0
  18. data/lib/clone/config/z_defaults.rb +28 -0
  19. data/lib/clone/generator/engine.rb +581 -0
  20. data/lib/clone/generator/terminal.rb +104 -0
  21. data/lib/clone/helpers/helper_methods.rb +251 -0
  22. data/lib/clone/helpers/local_methods.rb +150 -0
  23. data/lib/clone/helpers/require.rb +37 -0
  24. data/module/Marshal.4.8 +0 -0
  25. data/module/Marshal.4.8.Z +0 -0
  26. data/module/gems/commander-4.1.3/.gitignore +6 -0
  27. data/module/gems/commander-4.1.3/.travis.yml +11 -0
  28. data/module/gems/commander-4.1.3/DEVELOPMENT +15 -0
  29. data/module/gems/commander-4.1.3/Gemfile +3 -0
  30. data/module/gems/commander-4.1.3/History.rdoc +345 -0
  31. data/module/gems/commander-4.1.3/Manifest +38 -0
  32. data/module/gems/commander-4.1.3/README.rdoc +375 -0
  33. data/module/gems/commander-4.1.3/Rakefile +10 -0
  34. data/module/gems/commander-4.1.3/bin/commander +55 -0
  35. data/module/gems/commander-4.1.3/commander.gemspec +26 -0
  36. data/module/gems/commander-4.1.3/lib/commander.rb +32 -0
  37. data/module/gems/commander-4.1.3/lib/commander/blank.rb +8 -0
  38. data/module/gems/commander-4.1.3/lib/commander/command.rb +213 -0
  39. data/module/gems/commander-4.1.3/lib/commander/core_ext.rb +3 -0
  40. data/module/gems/commander-4.1.3/lib/commander/core_ext/array.rb +26 -0
  41. data/module/gems/commander-4.1.3/lib/commander/core_ext/object.rb +11 -0
  42. data/module/gems/commander-4.1.3/lib/commander/delegates.rb +13 -0
  43. data/module/gems/commander-4.1.3/lib/commander/help_formatters.rb +8 -0
  44. data/module/gems/commander-4.1.3/lib/commander/help_formatters/base.rb +18 -0
  45. data/module/gems/commander-4.1.3/lib/commander/help_formatters/terminal.rb +20 -0
  46. data/module/gems/commander-4.1.3/lib/commander/help_formatters/terminal/command_help.erb +35 -0
  47. data/module/gems/commander-4.1.3/lib/commander/help_formatters/terminal/help.erb +36 -0
  48. data/module/gems/commander-4.1.3/lib/commander/help_formatters/terminal_compact.rb +12 -0
  49. data/module/gems/commander-4.1.3/lib/commander/help_formatters/terminal_compact/command_help.erb +27 -0
  50. data/module/gems/commander-4.1.3/lib/commander/help_formatters/terminal_compact/help.erb +29 -0
  51. data/module/gems/commander-4.1.3/lib/commander/import.rb +10 -0
  52. data/module/gems/commander-4.1.3/lib/commander/platform.rb +8 -0
  53. data/module/gems/commander-4.1.3/lib/commander/runner.rb +411 -0
  54. data/module/gems/commander-4.1.3/lib/commander/user_interaction.rb +521 -0
  55. data/module/gems/commander-4.1.3/lib/commander/version.rb +3 -0
  56. data/module/gems/commander-4.1.3/spec/command_spec.rb +157 -0
  57. data/module/gems/commander-4.1.3/spec/core_ext/array_spec.rb +20 -0
  58. data/module/gems/commander-4.1.3/spec/core_ext/object_spec.rb +21 -0
  59. data/module/gems/commander-4.1.3/spec/help_formatters/terminal_spec.rb +67 -0
  60. data/module/gems/commander-4.1.3/spec/runner_spec.rb +526 -0
  61. data/module/gems/commander-4.1.3/spec/spec_helper.rb +59 -0
  62. data/module/gems/commander-4.1.3/spec/ui_spec.rb +30 -0
  63. data/module/gems/hello.rb +1 -0
  64. data/module/gems/highline-1.6.19/.gitignore +2 -0
  65. data/module/gems/highline-1.6.19/AUTHORS +3 -0
  66. data/module/gems/highline-1.6.19/CHANGELOG +346 -0
  67. data/module/gems/highline-1.6.19/COPYING +340 -0
  68. data/module/gems/highline-1.6.19/INSTALL +55 -0
  69. data/module/gems/highline-1.6.19/LICENSE +7 -0
  70. data/module/gems/highline-1.6.19/README.rdoc +63 -0
  71. data/module/gems/highline-1.6.19/Rakefile +50 -0
  72. data/module/gems/highline-1.6.19/TODO +6 -0
  73. data/module/gems/highline-1.6.19/examples/ansi_colors.rb +38 -0
  74. data/module/gems/highline-1.6.19/examples/asking_for_arrays.rb +18 -0
  75. data/module/gems/highline-1.6.19/examples/basic_usage.rb +75 -0
  76. data/module/gems/highline-1.6.19/examples/color_scheme.rb +32 -0
  77. data/module/gems/highline-1.6.19/examples/get_character.rb +12 -0
  78. data/module/gems/highline-1.6.19/examples/limit.rb +12 -0
  79. data/module/gems/highline-1.6.19/examples/menus.rb +65 -0
  80. data/module/gems/highline-1.6.19/examples/overwrite.rb +19 -0
  81. data/module/gems/highline-1.6.19/examples/page_and_wrap.rb +322 -0
  82. data/module/gems/highline-1.6.19/examples/password.rb +7 -0
  83. data/module/gems/highline-1.6.19/examples/repeat_entry.rb +21 -0
  84. data/module/gems/highline-1.6.19/examples/trapping_eof.rb +22 -0
  85. data/module/gems/highline-1.6.19/examples/using_readline.rb +17 -0
  86. data/module/gems/highline-1.6.19/highline.gemspec +37 -0
  87. data/module/gems/highline-1.6.19/lib/highline.rb +1012 -0
  88. data/module/gems/highline-1.6.19/lib/highline/color_scheme.rb +134 -0
  89. data/module/gems/highline-1.6.19/lib/highline/compatibility.rb +16 -0
  90. data/module/gems/highline-1.6.19/lib/highline/import.rb +41 -0
  91. data/module/gems/highline-1.6.19/lib/highline/menu.rb +398 -0
  92. data/module/gems/highline-1.6.19/lib/highline/question.rb +475 -0
  93. data/module/gems/highline-1.6.19/lib/highline/simulate.rb +48 -0
  94. data/module/gems/highline-1.6.19/lib/highline/string_extensions.rb +131 -0
  95. data/module/gems/highline-1.6.19/lib/highline/style.rb +181 -0
  96. data/module/gems/highline-1.6.19/lib/highline/system_extensions.rb +222 -0
  97. data/module/gems/highline-1.6.19/setup.rb +1360 -0
  98. data/module/gems/highline-1.6.19/site/.cvsignore +1 -0
  99. data/module/gems/highline-1.6.19/site/highline.css +65 -0
  100. data/module/gems/highline-1.6.19/site/images/logo.png +0 -0
  101. data/module/gems/highline-1.6.19/site/index.html +58 -0
  102. data/module/gems/highline-1.6.19/test/string_methods.rb +32 -0
  103. data/module/gems/highline-1.6.19/test/tc_color_scheme.rb +96 -0
  104. data/module/gems/highline-1.6.19/test/tc_highline.rb +1128 -0
  105. data/module/gems/highline-1.6.19/test/tc_import.rb +52 -0
  106. data/module/gems/highline-1.6.19/test/tc_menu.rb +439 -0
  107. data/module/gems/highline-1.6.19/test/tc_string_extension.rb +20 -0
  108. data/module/gems/highline-1.6.19/test/tc_string_highline.rb +38 -0
  109. data/module/gems/highline-1.6.19/test/tc_style.rb +567 -0
  110. data/module/gems/highline-1.6.19/test/ts_all.rb +16 -0
  111. data/module/latest_specs.4.8 +0 -0
  112. data/module/latest_specs.4.8.gz +0 -0
  113. data/module/prerelease_specs.4.8 +0 -0
  114. data/module/prerelease_specs.4.8.gz +0 -0
  115. data/module/specs.4.8 +0 -0
  116. data/module/specs.4.8.gz +0 -0
  117. data/samples/blather/restlike/Gemfile +4 -0
  118. data/samples/blather/restlike/cmd.yml +1 -0
  119. data/samples/blather/restlike/lib/blather.rb +9 -0
  120. data/samples/blather/restlike/lib/blather/dsl/api.rb +78 -0
  121. data/samples/blather/restlike/lib/blather/dsl/call.rb +13 -0
  122. data/samples/blather/restlike/lib/blather/dsl/client.rb +58 -0
  123. data/samples/blather/restlike/lib/blather/dsl/config.rb +11 -0
  124. data/samples/blather/restlike/lib/blather/dsl/extraDSL.rb +163 -0
  125. data/samples/blather/restlike/lib/blather/meta/require.rb +8 -0
  126. data/samples/blather/restlike/lib/blather/meta/xmpp.yml +5 -0
  127. data/samples/blather/restlike/lib/blather/vendors/xmpp_default.rb +27 -0
  128. data/samples/blather/restlike/readme +2 -0
  129. data/samples/grape/init/Gemfile +2 -0
  130. data/samples/grape/init/cmd.yml +3 -0
  131. data/samples/grape/init/config.ru +2 -0
  132. data/samples/grape/init/docs/grape/documentation.txt +939 -0
  133. data/samples/grape/init/docs/grape/generate_rest_routes.rb +37 -0
  134. data/samples/grape/init/docs/grape/ls_routes.rb +31 -0
  135. data/samples/grape/init/lib/grape.rb +4 -0
  136. data/samples/grape/init/lib/grape/meta/subclasses.rb +20 -0
  137. data/samples/grape/init/lib/grape/xpath/app.rb +30 -0
  138. data/samples/grape/init/lib/grape/xpath/ruotes.rb +6 -0
  139. data/samples/grape/init/readme +1 -0
  140. data/samples/grape/readme +29 -0
  141. data/samples/grape/vendor/lib/grape/vendors/v1/rest.rb +57 -0
  142. data/samples/mongoid/cmd.yml +1 -0
  143. data/samples/mongoid/init/Gemfile +3 -0
  144. data/samples/mongoid/init/cmd.yml +2 -0
  145. data/samples/mongoid/init/docs/mongoid/ModelsRelations.rb +11 -0
  146. data/samples/mongoid/init/docs/mongoid/documents.xls +0 -0
  147. data/samples/mongoid/init/docs/mongoid/generate_modelsToDocs.rb +25 -0
  148. data/samples/mongoid/init/docs/mongoid/modelsToDocs.rb +25 -0
  149. data/samples/mongoid/init/docs/mongoid/relations.txt +1354 -0
  150. data/samples/mongoid/init/lib/mongoid.rb +44 -0
  151. data/samples/mongoid/init/lib/mongoid/dsl/extraDSL_CRUD.rb +446 -0
  152. data/samples/mongoid/init/lib/mongoid/dsl/extraDSL_MP.rb +517 -0
  153. data/samples/mongoid/init/lib/mongoid/dsl/init.rb +37 -0
  154. data/samples/mongoid/init/lib/mongoid/dsl/params.rb +67 -0
  155. data/samples/mongoid/init/lib/mongoid/meta/banned.rb +147 -0
  156. data/samples/mongoid/init/lib/mongoid/meta/control.yml +13 -0
  157. data/samples/mongoid/init/lib/mongoid/meta/mongoid.yml +6 -0
  158. data/samples/mongoid/init/lib/mongoid/meta/mpatch.rb +14 -0
  159. data/samples/mongoid/model/lib/mongoid/models/model.rb +28 -0
  160. data/samples/mongoid/readme +33 -0
  161. data/samples/rack/init/Gemfile +10 -0
  162. data/samples/rack/init/cmd.yml +2 -0
  163. data/samples/rack/init/config.ru +1 -0
  164. data/samples/rack/init/docs/rack/rake introducing.txt +60 -0
  165. data/samples/rack/init/docs/rack/webservers/Thin +43 -0
  166. data/samples/rack/init/docs/rack/webservers/ebb +72 -0
  167. data/samples/rack/init/docs/rack/webservers/fcgi +103 -0
  168. data/samples/rack/init/docs/rack/webservers/mongrel +74 -0
  169. data/samples/rack/init/docs/rack/webservers/passenger +37 -0
  170. data/samples/rack/init/docs/rack/webservers/scgi +188 -0
  171. data/samples/rack/init/lib/rack.rb +1 -0
  172. data/samples/rack/init/lib/rack/meta/webserver/thin.rb +45 -0
  173. data/samples/rack/init/lib/rack/meta/webserver/thin.yml +6 -0
  174. data/samples/rack/init/server.rb +0 -0
  175. data/samples/rack/readme +13 -0
  176. data/samples/rest_client/init/Gemfile +5 -0
  177. data/samples/rest_client/init/boot.rb +2 -0
  178. data/samples/rest_client/init/cmd.yml +1 -0
  179. data/samples/rest_client/init/config/rest_client/defaults.rb +16 -0
  180. data/samples/rest_client/init/docs/rest_client/simple overlook +251 -0
  181. data/samples/rest_client/init/test/rest_client/rest_dsl.rb +5 -0
  182. data/samples/rest_client/readme +7 -0
  183. data/samples/scripts/lines_counter/lines_number.rb +32 -0
  184. data/samples/scripts/lines_counter/readme +5 -0
  185. data/samples/scripts/readme +1 -0
  186. metadata +197 -7
  187. data/lib/clone/cms.rb +0 -56
  188. data/lib/clone/ext.rb +0 -77
  189. data/sample/test.rb +0 -30
@@ -0,0 +1,59 @@
1
+ require 'rubygems'
2
+ require 'simplecov'
3
+ SimpleCov.start
4
+
5
+ # prevent paging (through less) from actually occurring in test environment
6
+ ENV['PAGER'] = 'cat'
7
+
8
+ $:.unshift File.dirname(__FILE__) + '/../lib'
9
+ require 'commander/import'
10
+ require 'stringio'
11
+
12
+ # Mock terminal IO streams so we can spec against them
13
+
14
+ def mock_terminal
15
+ @input = StringIO.new
16
+ @output = StringIO.new
17
+ $terminal = HighLine.new @input, @output
18
+ end
19
+
20
+ # Create test command for usage within several specs
21
+
22
+ def create_test_command
23
+ command :meta do |c|
24
+ c.syntax = "test [options] <file>"
25
+ c.description = "test description"
26
+ c.example "description", "command"
27
+ c.example "description 2", "command 2"
28
+ c.option '-v', "--verbose", "verbose description"
29
+ c.when_called do |args, options|
30
+ "test %s" % args.join
31
+ end
32
+ end
33
+ @command = command :meta
34
+ end
35
+
36
+ # Create a new command runner
37
+
38
+ def new_command_runner *args, &block
39
+ Commander::Runner.instance_variable_set :"@singleton", Commander::Runner.new(args)
40
+ program :name, 'test'
41
+ program :version, '1.2.3'
42
+ program :description, 'something'
43
+ create_test_command
44
+ yield if block
45
+ Commander::Runner.instance
46
+ end
47
+
48
+ # Comply with how specs were previously written
49
+
50
+ def command_runner
51
+ Commander::Runner.instance
52
+ end
53
+
54
+ def run *args
55
+ new_command_runner(*args) do
56
+ program :help_formatter, Commander::HelpFormatter::Base
57
+ end.run!
58
+ @output.string
59
+ end
@@ -0,0 +1,30 @@
1
+ require 'spec_helper'
2
+
3
+ describe Commander::UI do
4
+
5
+ describe ".replace_tokens" do
6
+ it "should replace tokens within a string, with hash values" do
7
+ result = Commander::UI.replace_tokens 'Welcome :name, enjoy your :object'.freeze, :name => 'TJ', :object => 'cookie'
8
+ result.should eq('Welcome TJ, enjoy your cookie')
9
+ end
10
+ end
11
+
12
+ describe "progress" do
13
+ it "should not die on an empty list" do
14
+ exception = false
15
+ begin
16
+ progress([]) {}
17
+ rescue
18
+ exception = true
19
+ end
20
+ exception.should_not be_true
21
+ end
22
+ end
23
+
24
+ describe ".available_editor" do
25
+ it "should not fail on available editors with shell arguments" do
26
+ Commander::UI.available_editor('sh -c').should eq('sh -c')
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1 @@
1
+ puts "hello world!"
@@ -0,0 +1,2 @@
1
+ doc
2
+ pkg
@@ -0,0 +1,3 @@
1
+ James Edward Gray II:: {james@grayproductions.net}[mailto:james@grayproductions.net]
2
+ Gregory Brown:: {gregory.t.brown@gmail.com}[mailto:gregory.t.brown@gmail.com]
3
+ Richard LeBer:: {richard.leber@gmail.com}[mailto:richard.leber@gmail.com]
@@ -0,0 +1,346 @@
1
+ = Change Log
2
+
3
+ Below is a complete listing of changes for each revision of HighLine.
4
+
5
+ == 1.6.19
6
+
7
+ * Fixed `terminal_size()` with jline2 (by presidentbeef).
8
+
9
+ == 1.6.18
10
+
11
+ * Fixed a long supported interface that was accidentally broken with a recent change (by Rubem Nakamura Carneiro).
12
+
13
+ == 1.6.17
14
+
15
+ * Added encoding support to menus (by David Lyons).
16
+ * Some minor fixes to SystemExtensions (by whiteleaf and presidentbeef).
17
+
18
+ == 1.6.16
19
+
20
+ * Added the new indention feature (by davispuh).
21
+ * Separated auto-completion from the answer type (by davispuh).
22
+ * Improved JRuby support (by rsutphin).
23
+ * General code clean up (by stomar).
24
+ * Made HighLine#say() a little smarter with regard to color escapes (by Kenneth Murphy).
25
+
26
+ == 1.6.15
27
+
28
+ * Added support for nil arguments in lists (by Eric Saxby).
29
+ * Fixed HighLine's termios integration (by Jens Wille).
30
+
31
+ == 1.6.14
32
+
33
+ * Added JRuby 1.7 support (by Mina Nagy).
34
+ * Take into account color escape sequences when wrapping text (by Mark J.
35
+ Titorenko).
36
+
37
+ == 1.6.13
38
+
39
+ * Removed unneeded Shebang lines (by Scott Gonyea).
40
+ * Protect the String passed to Question.new from modification (by michael).
41
+ * Added a retype-to-verify setting (by michael).
42
+
43
+ == 1.6.12
44
+
45
+ * Silenced warnings (by James McEwan).
46
+
47
+ == 1.6.11
48
+
49
+ * Fixed a bad test. (Fix by Diego Elio Pettenò.)
50
+
51
+ == 1.6.10
52
+
53
+ * Fixed a regression that prevented asking for String arguments (by Jeffery
54
+ Sman.)
55
+ * Fixed a testing incompatibility (by Hans de Graaff.)
56
+
57
+ == 1.6.9
58
+
59
+ * The new list modes now properly ignore escapes when sizing.
60
+ * Added a project gemspec file.
61
+ * Fixed a bug that prevented the use of termios (by tomdz).
62
+ * Switch to JLine to provide better echo support on JRuby (by tomdz).
63
+
64
+ == 1.6.8
65
+
66
+ * Fix missing <tt>ERASE_CHAR</tt> reference (by Aaron Gifford).
67
+
68
+ == 1.6.7
69
+
70
+ * Fixed bug introduced in 1.6.6 attempted fix (by Aaron Gifford).
71
+
72
+ == 1.6.6
73
+
74
+ * Fixed old style references causing <tt>HighLine::String</tt> errors (by Aaron Gifford).
75
+
76
+ == 1.6.5
77
+
78
+ * HighLine#list() now correctly handles empty lists (fix by Lachlan Dowding).
79
+ * HighLine#list() now supports <tt>:uneven_columns_across</tt> and
80
+ <tt>:uneven_columns_down</tt> modes.
81
+
82
+ == 1.6.4
83
+
84
+ * Add introspection methods to color_scheme: definition, keys, to_hash.
85
+ * Add tests for new methods.
86
+
87
+ == 1.6.3
88
+
89
+ * Add color NONE.
90
+ * Add RGB color capability.
91
+ * Made 'color' available as a class or instance method of HighLine, for
92
+ instance: HighLine.color("foo", :blue)) or highline_obj.color("foo", :blue)
93
+ are now both possible and equivalent.
94
+ * Add HighLine::String class with convenience methods: #color (alias
95
+ #foreground), #on (alias #background), colors, and styles. See
96
+ lib/string_extensions.rb.
97
+ * Add (optional) ability to extend String with the same convenience methods from
98
+ HighLine::String, using Highline.colorize_strings.
99
+
100
+ == 1.6.2
101
+
102
+ * Correctly handle STDIN being closed before we receive any data (fix by
103
+ mleinart).
104
+ * Try if msvcrt, if we can't load crtdll on Windows (fix by pepijnve).
105
+ * A fix for nil_on_handled not running the action (reported by Andrew Davey).
106
+
107
+ == 1.6.1
108
+
109
+ * Fixed raw_no_echo_mode so that it uses stty -icanon rather than cbreak
110
+ as cbreak does not appear to be the posixly correct argument. It fails
111
+ on Solaris if cbreak is used.
112
+ * Fixed an issue that kept Menu from showing the correct choices for
113
+ disambiguation.
114
+ * Removed a circular require that kept Ruby 1.9.2 from loading HighLine.
115
+ * Fixed a bug that caused infinite looping when wrapping text without spaces.
116
+ * Fixed it so that :auto paging accounts for the two lines it adds.
117
+ * On JRuby, improved error message about ffi-ncurses. Before 1.5.3,
118
+ HighLine was silently swallowing error messages when ffi-ncurses gem
119
+ was installed without ncurses present on the system.
120
+ * Reverted Aaron Simmons's patch to allow redirecting STDIN on Windows. This
121
+ is the only way we could find to restore HighLine's character reading to
122
+ working order.
123
+
124
+ == 1.5.2
125
+
126
+ * Added support for using the ffi-ncurses gem which is supported in JRuby.
127
+ * Added gem build instructions.
128
+
129
+ == 1.5.1
130
+
131
+ * Fixed the long standing echo true bug.
132
+ (reported by Lauri Tuominen)
133
+ * Improved Windows API calls to support the redirection of STDIN.
134
+ (patch by Aaron Simmons)
135
+ * Updated gem specification to avoid a deprecated call.
136
+ * Made a minor documentation clarification about character mode support.
137
+ * Worked around some API changes in Ruby's standard library in Ruby 1.9.
138
+ (patch by Jake Benilov)
139
+
140
+ == 1.5.0
141
+
142
+ * Fixed a bug that would prevent Readline from showing all completions.
143
+ (reported by Yaohan Chen)
144
+ * Added the ability to pass a block to HighLine#agree().
145
+ (patch by Yaohan Chen)
146
+
147
+ == 1.4.0
148
+
149
+ * Made the code grabbing terminal size a little more cross-platform by
150
+ adding support for Solaris. (patch by Ronald Braswell and Coey Minear)
151
+
152
+ == 1.2.9
153
+
154
+ * Additional work on the backspacing issue. (patch by Jeremy Hinegardner)
155
+ * Fixed Readline prompt bug. (patch by Jeremy Hinegardner)
156
+
157
+ == 1.2.8
158
+
159
+ * Fixed backspacing past the prompt and interrupting a prompt bugs.
160
+ (patch by Jeremy Hinegardner)
161
+
162
+ == 1.2.7
163
+
164
+ * Fixed the stty indent bug.
165
+ * Fixed the echo backspace bug.
166
+ * Added HighLine::track_eof=() setting to work are threaded eof?() calls.
167
+
168
+ == 1.2.6
169
+
170
+ Patch by Jeremy Hinegardner:
171
+
172
+ * Added ColorScheme support.
173
+ * Added HighLine::Question.overwrite mode.
174
+ * Various documentation fixes.
175
+
176
+ == 1.2.5
177
+
178
+ * Really fixed the bug I tried to fix in 1.2.4.
179
+
180
+ == 1.2.4
181
+
182
+ * Fixed a crash causing bug when using menus, reported by Patrick Hof.
183
+
184
+ == 1.2.3
185
+
186
+ * Treat Cygwin like a Posix OS, instead of a native Windows environment.
187
+
188
+ == 1.2.2
189
+
190
+ * Minor documentation corrections.
191
+ * Applied Thomas Werschleiln's patch to fix termio buffering on Solaris.
192
+ * Applied Justin Bailey's patch to allow canceling paged output.
193
+ * Fixed a documentation bug in the description of character case settings.
194
+ * Added a notice about termios in HighLine::Question#echo.
195
+ * Finally working around the infamous "fast typing" bug
196
+
197
+ == 1.2.1
198
+
199
+ * Applied Justin Bailey's fix for the page_print() infinite loop bug.
200
+ * Made a SystemExtensions module to expose OS level functionality other
201
+ libraries may want to access.
202
+ * Publicly exposed the get_character() method, per user requests.
203
+ * Added terminal_size(), output_cols(), and output_rows() methods.
204
+ * Added :auto setting for warp_at=() and page_at=().
205
+
206
+ == 1.2.0
207
+
208
+ * Improved RubyForge and gem spec project descriptions.
209
+ * Added basic examples to README.
210
+ * Added a VERSION constant.
211
+ * Added support for hidden menu commands.
212
+ * Added Object.or_ask() when using highline/import.
213
+
214
+ == 1.0.4
215
+
216
+ * Moved the HighLine project to Subversion.
217
+ * HighLine's color escapes can now be disabled.
218
+ * Fixed EOF bug introduced in the last release.
219
+ * Updated HighLine web page.
220
+ * Moved to a forked development/stable version numbering.
221
+
222
+ == 1.0.2
223
+
224
+ * Removed old and broken help tests.
225
+ * Fixed test case typo found by David A. Black.
226
+ * Added ERb escapes processing to lists, for coloring list items. Color escapes
227
+ do not add to list element size.
228
+ * HighLine now throws EOFError when input is exhausted.
229
+
230
+ == 1.0.1
231
+
232
+ * Minor bug fix: Moved help initialization to before response building, so help
233
+ would show up in the default responses.
234
+
235
+ == 1.0.0
236
+
237
+ * Fixed documentation typo pointed out by Gavin Kistner.
238
+ * Added <tt>gather = ...</tt> option to question for fetching entire Arrays or
239
+ Hashes filled with answers. You can set +gather+ to a count of answers to
240
+ collect, a String or Regexp matching the end of input, or a Hash where each
241
+ key can be used in a new question.
242
+ * Added File support to HighLine.ask(). You can specify a _directory_ and a
243
+ _glob_ pattern that combine into a list of file choices the user can select
244
+ from. You can choose to receive the user's answer as an open filehandle or as
245
+ a Pathname object.
246
+ * Added Readline support for history and editing.
247
+ * Added tab completion for menu and file selection selection (requires
248
+ Readline).
249
+ * Added an optional character limit for input.
250
+ * Added a complete help system to HighLine's shell menu creation tools.
251
+
252
+ == 0.6.1
253
+
254
+ * Removed termios dependancy in gem, to fix Windows' install.
255
+
256
+ == 0.6.0
257
+
258
+ * Implemented HighLine.choose() for menu handling.
259
+ * Provided shortcut <tt>choose(item1, item2, ...)</tt> for simple menus.
260
+ * Allowed Ruby code to be attached to each menu item, to create a complete
261
+ menu solution.
262
+ * Provided for total customization of the menu layout.
263
+ * Allowed for menu selection by index, name or both.
264
+ * Added a _shell_ mode to allow menu selection with additional details
265
+ following the name.
266
+ * Added a list() utility method that can be invoked just like color(). It can
267
+ layout Arrays for you in any output in the modes <tt>:columns_across</tt>,
268
+ <tt>:columns_down</tt>, <tt>:inline</tt> and <tt>:rows</tt>
269
+ * Added support for <tt>echo = "*"</tt> style settings. User code can now
270
+ choose the echo character this way.
271
+ * Modified HighLine to user the "termios" library for character input, if
272
+ available. Will return to old behavior (using "stty"), if "termios" cannot be
273
+ loaded.
274
+ * Improved "stty" state restoring code.
275
+ * Fixed "stty" code to handle interrupt signals.
276
+ * Improved the default auto-complete error message and exposed this message
277
+ through the +responses+ interface as <tt>:no_completion</tt>.
278
+
279
+ == 0.5.0
280
+
281
+ * Implemented <tt>echo = false</tt> for HighLine::Question objects, primarily to
282
+ make fetching passwords trivial.
283
+ * Fixed an auto-complete bug that could cause a crash when the user gave an
284
+ answer that didn't complete to any valid choice.
285
+ * Implemented +case+ for HighLine::Question objects to provide character case
286
+ conversions on given answers. Can be set to <tt>:up</tt>, <tt>:down</tt>, or
287
+ <tt>:capitalize</tt>.
288
+ * Exposed <tt>@answer</tt> to the response system, to allow response that are
289
+ aware of incorrect input.
290
+ * Implemented +confirm+ for HighLine::Question objects to allow for verification
291
+ for sensitive user choices. If set to +true+, user will have to answer an
292
+ "Are you sure? " question. Can also be set to the question to confirm with
293
+ the user.
294
+
295
+ == 0.4.0
296
+
297
+ * Added <tt>@wrap_at</tt> and <tt>@page_at</tt> settings and accessors to
298
+ HighLine, to control text flow.
299
+ * Implemented line wrapping with adjustable limit.
300
+ * Implemented paged printing with adjustable limit.
301
+
302
+ == 0.3.0
303
+
304
+ * Added support for installing with setup.rb.
305
+ * All output is now treated as an ERb sequence, allowing Ruby code to be
306
+ embedded in output strings.
307
+ * Added support for ANSI color sequences in say(). (And everything else
308
+ by extension.)
309
+ * Added whitespace handling for answers. Can be set to <tt>:strip</tt>,
310
+ <tt>:chomp</tt>, <tt>:collapse</tt>, <tt>:strip_and_collapse</tt>,
311
+ <tt>:chomp_and_collapse</tt>, <tt>:remove</tt>, or <tt>:none</tt>.
312
+ * Exposed question details to ERb completion through @question, to allow for
313
+ intelligent responses.
314
+ * Simplified HighLine internals using @question.
315
+ * Added support for fetching single character input either with getc() or
316
+ HighLine's own cross-platform terminal input routine.
317
+ * Improved type conversion to handle user defined classes.
318
+
319
+ == 0.2.0
320
+
321
+ * Added Unit Tests to cover an already fixed output bug in the future.
322
+ * Added Rakefile and setup test action (default).
323
+ * Renamed HighLine::Answer to HighLine::Question to better illustrate its role.
324
+ * Renamed fetch_line() to get_response() to better define its goal.
325
+ * Simplified explain_error in terms of the Question object.
326
+ * Renamed accept?() to in_range?() to better define purpose.
327
+ * Reworked valid?() into valid_answer?() to better fit Question object.
328
+ * Reworked <tt>@member</tt> into <tt>@in</tt>, to make it easier to remember and
329
+ switched implementation to include?().
330
+ * Added range checks for @above and @below.
331
+ * Fixed the bug causing ask() to swallow NoMethodErrors.
332
+ * Rolled ask_on_error() into responses.
333
+ * Redirected imports to Kernel from Object.
334
+ * Added support for <tt>validate = lambda { ... }</tt>.
335
+ * Added default answer support.
336
+ * Fixed bug that caused ask() to die with an empty question.
337
+ * Added complete documentation.
338
+ * Improve the implemetation of agree() to be the intended "yes" or "no" only
339
+ question.
340
+ * Added Rake tasks for documentation and packaging.
341
+ * Moved project to RubyForge.
342
+
343
+ == 0.1.0
344
+
345
+ * Initial release as the solution to
346
+ {Ruby Quiz #29}[http://www.rubyquiz.com/quiz29.html].
@@ -0,0 +1,340 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Library General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
279
+
280
+ END OF TERMS AND CONDITIONS
281
+
282
+ How to Apply These Terms to Your New Programs
283
+
284
+ If you develop a new program, and you want it to be of the greatest
285
+ possible use to the public, the best way to achieve this is to make it
286
+ free software which everyone can redistribute and change under these terms.
287
+
288
+ To do so, attach the following notices to the program. It is safest
289
+ to attach them to the start of each source file to most effectively
290
+ convey the exclusion of warranty; and each file should have at least
291
+ the "copyright" line and a pointer to where the full notice is found.
292
+
293
+ <one line to give the program's name and a brief idea of what it does.>
294
+ Copyright (C) <year> <name of author>
295
+
296
+ This program is free software; you can redistribute it and/or modify
297
+ it under the terms of the GNU General Public License as published by
298
+ the Free Software Foundation; either version 2 of the License, or
299
+ (at your option) any later version.
300
+
301
+ This program is distributed in the hope that it will be useful,
302
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
303
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
+ GNU General Public License for more details.
305
+
306
+ You should have received a copy of the GNU General Public License
307
+ along with this program; if not, write to the Free Software
308
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
309
+
310
+
311
+ Also add information on how to contact you by electronic and paper mail.
312
+
313
+ If the program is interactive, make it output a short notice like this
314
+ when it starts in an interactive mode:
315
+
316
+ Gnomovision version 69, Copyright (C) year name of author
317
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
+ This is free software, and you are welcome to redistribute it
319
+ under certain conditions; type `show c' for details.
320
+
321
+ The hypothetical commands `show w' and `show c' should show the appropriate
322
+ parts of the General Public License. Of course, the commands you use may
323
+ be called something other than `show w' and `show c'; they could even be
324
+ mouse-clicks or menu items--whatever suits your program.
325
+
326
+ You should also get your employer (if you work as a programmer) or your
327
+ school, if any, to sign a "copyright disclaimer" for the program, if
328
+ necessary. Here is a sample; alter the names:
329
+
330
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
332
+
333
+ <signature of Ty Coon>, 1 April 1989
334
+ Ty Coon, President of Vice
335
+
336
+ This General Public License does not permit incorporating your program into
337
+ proprietary programs. If your program is a subroutine library, you may
338
+ consider it more useful to permit linking proprietary applications with the
339
+ library. If this is what you want to do, use the GNU Library General
340
+ Public License instead of this License.