highline 1.2.2 → 1.2.3
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 +4 -0
- data/lib/highline.rb +1 -1
- data/lib/highline/system_extensions.rb +3 -0
- metadata +2 -2
data/CHANGELOG
CHANGED
data/lib/highline.rb
CHANGED
@@ -17,6 +17,9 @@ class HighLine
|
|
17
17
|
# dragons!
|
18
18
|
#
|
19
19
|
begin
|
20
|
+
# Cygwin will look like Windows, but we want to treat it like a Posix OS:
|
21
|
+
raise LoadError, "Cygwin is a Posix OS." if RUBY_PLATFORM =~ /\bcygwin\b/i
|
22
|
+
|
20
23
|
require "Win32API" # See if we're on Windows.
|
21
24
|
|
22
25
|
CHARACTER_MODE = "Win32API" # For Debugging purposes only.
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: highline
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.2.
|
7
|
-
date: 2006-10-
|
6
|
+
version: 1.2.3
|
7
|
+
date: 2006-10-25 00:00:00 -05:00
|
8
8
|
summary: HighLine is a high-level command-line IO library.
|
9
9
|
require_paths:
|
10
10
|
- lib
|