highline 0.6.0 → 0.6.1

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.
Files changed (5) hide show
  1. data/CHANGELOG +4 -0
  2. data/INSTALL +12 -0
  3. data/Rakefile +5 -2
  4. data/TODO +1 -0
  5. metadata +3 -13
data/CHANGELOG CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Below is a complete listing of changes for each revision of HighLine.
4
4
 
5
+ == 0.6.1
6
+
7
+ * Removed termios dependancy in gem, to fix Windows' install.
8
+
5
9
  == 0.6.0
6
10
 
7
11
  * Implemented HighLine.choose() for menu handling.
data/INSTALL CHANGED
@@ -21,3 +21,15 @@ Download the latest version of HighLine from the
21
21
  the root project directory and enter:
22
22
 
23
23
  $ sudo ruby setup.rb
24
+
25
+ == Using termios
26
+
27
+ While not a requirement, HighLine will take advantage of the termios library if
28
+ installed (on Unix). This slightly improves HighLine's character reading
29
+ capabilities and thus is recommended for all Unix users.
30
+
31
+ If using the HighLine gem, you should be able to add termios as easily as:
32
+
33
+ $ sudo gem install termios
34
+
35
+ For manual installs, consult the termios documentation.
data/Rakefile CHANGED
@@ -30,7 +30,7 @@ end
30
30
 
31
31
  spec = Gem::Specification.new do |spec|
32
32
  spec.name = "highline"
33
- spec.version = "0.6.0"
33
+ spec.version = "0.6.1"
34
34
  spec.platform = Gem::Platform::RUBY
35
35
  spec.summary = "HighLine is a high-level line oriented console interface."
36
36
  spec.files = Dir.glob("{examples,lib,test}/**/*.rb").
@@ -41,7 +41,10 @@ spec = Gem::Specification.new do |spec|
41
41
  spec.extra_rdoc_files = %w{README INSTALL TODO CHANGELOG LICENSE}
42
42
  spec.rdoc_options << '--title' << 'HighLine Documentation' <<
43
43
  '--main' << 'README'
44
- spec.add_dependency("termios", ">= 0.9.4")
44
+
45
+ ### Removed due to Windows' install problems ###
46
+ # spec.add_dependency("termios", ">= 0.9.4")
47
+
45
48
  spec.require_path = 'lib'
46
49
  spec.autorequire = "highline"
47
50
  spec.author = "James Edward Gray II"
data/TODO CHANGED
@@ -9,3 +9,4 @@ order.
9
9
  * Support <tt>ask(..., File)</tt>.
10
10
  * Add readline support for history and editing.
11
11
  * Add an easy-access help system for menus.
12
+ * Add tab completion for menu selection.
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
3
3
  specification_version: 1
4
4
  name: highline
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.6.0
7
- date: 2005-05-20
6
+ version: 0.6.1
7
+ date: 2005-05-23
8
8
  summary: HighLine is a high-level line oriented console interface.
9
9
  require_paths:
10
10
  - lib
@@ -65,14 +65,4 @@ extra_rdoc_files:
65
65
  executables: []
66
66
  extensions: []
67
67
  requirements: []
68
- dependencies:
69
- - !ruby/object:Gem::Dependency
70
- name: termios
71
- version_requirement:
72
- version_requirements: !ruby/object:Gem::Version::Requirement
73
- requirements:
74
- -
75
- - ">="
76
- - !ruby/object:Gem::Version
77
- version: 0.9.4
78
- version:
68
+ dependencies: []