highline 1.7.1 → 1.7.2

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: 4c0eaf72ddbbf7741df17a97b4112446d5937422
4
- data.tar.gz: b9acf919c1309a33fd91cc9e5d948e291ef259c7
3
+ metadata.gz: 6f54598dfd8523d20c334760c05864d61e1855eb
4
+ data.tar.gz: 16fbcd03e8f21455bc9e4b2fcd0b653f18ef7580
5
5
  SHA512:
6
- metadata.gz: 16662e452444bd78795bf9043f9b961065959f75db20599be82091355e588f9ec0b34d0cf26612c116707fb85c0eb1010b2c1805b623618dfa4bc18dbf595eeb
7
- data.tar.gz: c6a914aee8f201f7c8066c5ea689ce9d410253848105f01d26a13ac8fae66f7efc32ddde983207adf3cbb244c23ecd9b55dba0cddb01bc03d8b094c31babc220
6
+ metadata.gz: e16f724b0419fd517fc4fe792afebb07410c83ea8441bf40fb9f55d3f4dfcbe7440b492da49d3557c71a3763180c3a61bf2422471edbc14d8b9fc745f2784913
7
+ data.tar.gz: 79640ea44e220be9475f5bc5e6bc645845ae7904a85230cdb96eebc3ba3c3f4a16bb68378a4a943b51247a5845511ace62fdf45786272fcc6e398c7f47802987
@@ -2,6 +2,11 @@
2
2
 
3
3
  Below is a complete listing of changes for each revision of HighLine.
4
4
 
5
+ ### 1.7.2 / 2015-04-19
6
+
7
+ #### Bug fixes
8
+ * Fix #138 (a regression of #131). PR #139.
9
+
5
10
  ### 1.7.1 / 2015-02-24
6
11
 
7
12
  #### Enhancements
@@ -3,6 +3,7 @@
3
3
  by James Edward Gray II
4
4
 
5
5
  {<img src="https://travis-ci.org/JEG2/highline.svg" alt="Build Status" />}[https://travis-ci.org/JEG2/highline]
6
+ {<img src="https://img.shields.io/gem/v/highline.svg?style=flat" />}[http://rubygems.org/gems/highline]
6
7
 
7
8
  == Description
8
9
 
@@ -225,7 +225,7 @@ class HighLine
225
225
  def terminal_size
226
226
  begin
227
227
  require "io/console"
228
- winsize = IO.console.winsize rescue nil
228
+ winsize = IO.console.winsize.reverse rescue nil
229
229
  return winsize if winsize
230
230
  rescue LoadError
231
231
  end
@@ -1,4 +1,4 @@
1
1
  class HighLine
2
2
  # The version of the installed library.
3
- VERSION = "1.7.1".freeze
3
+ VERSION = "1.7.2".freeze
4
4
  end
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.7.1
4
+ version: 1.7.2
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: 2015-02-25 00:00:00.000000000 Z
11
+ date: 2015-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: code_statistics
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
113
  version: '0'
114
114
  requirements: []
115
115
  rubyforge_project: highline
116
- rubygems_version: 2.2.2
116
+ rubygems_version: 2.4.5
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: HighLine is a high-level command-line IO library.