highline 1.6.17 → 1.6.18

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7d1127875f296c95669eb827d9eb89b0546d9b5
4
- data.tar.gz: ddfe6f50b33cc5cef736259e11f8ee44421747f2
3
+ metadata.gz: 53c78ab14c72f211a5cad876df0f52279d1e51dd
4
+ data.tar.gz: 2d1f94f0b8410f2643800533534943da39a8953d
5
5
  SHA512:
6
- metadata.gz: 78fd61a881b49fb341078263ad1af1d98cd8d14e34524fd5701932cc929e4572cd96d12eff688a88a9701142e6f268f06f9dcf63fd049b61b1665e92d91a053c
7
- data.tar.gz: 6897351c5512a5f39ea98eac8c4bee52a5772dde4e871126d3eb45a68446a12e6097290994a51fbe1a8b71a2ff0ee6c10864b0e728270a368d5aefaa1be7f11f
6
+ metadata.gz: 9b1a9bc30b44b87ee29ee5e63e8feb928eeceea9ccbe19ec24d9283486e16d3239f7de4d597a553e97a27549d527fc1f342cdce632f0fc2d70b78ab9c28f1653
7
+ data.tar.gz: e6b506d3177ca6a9b400813b3181b01fa6244ad5c8edd18cc2db9fe051faec2c5a0f5fe1b41d529eb1999a7d38573960e6ac3511072e502481d1ebe70f158056
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
+ == 1.6.18
6
+
7
+ * Fixed a long supported interface that was accidentally broken with a recent change (by Rubem Nakamura Carneiro).
8
+
5
9
  == 1.6.17
6
10
 
7
11
  * Added encoding support to menus (by David Lyons).
@@ -28,7 +28,7 @@ require "highline/style"
28
28
  #
29
29
  class HighLine
30
30
  # The version of the installed library.
31
- VERSION = "1.6.17".freeze
31
+ VERSION = "1.6.18".freeze
32
32
 
33
33
  # An internal HighLine error. User code does not need to trap this.
34
34
  class QuestionError < StandardError
@@ -39,6 +39,8 @@ class HighLine
39
39
  end
40
40
  end
41
41
 
42
+ extend self
43
+
42
44
  #
43
45
  # This section builds character reading and terminal size functions
44
46
  # to suit the proper platform we're running on. Be warned: Here be
@@ -85,7 +87,7 @@ class HighLine
85
87
  extern "unsigned long GetStdHandle(unsigned long)"
86
88
  end
87
89
  end
88
-
90
+
89
91
  CHARACTER_MODE = "Win32API" # For Debugging purposes only.
90
92
 
91
93
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: highline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.17
4
+ version: 1.6.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Edward Gray II
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-04-14 00:00:00.000000000 Z
11
+ date: 2013-04-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  A high-level IO library that provides validation, type conversion, and more for