highline 1.7.5 → 1.7.6

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: 5d427604bbe3d36df03394ae00974d1d67cef159
4
- data.tar.gz: 014e702bd3c39947099c03783d6378b47cb83195
3
+ metadata.gz: 3d2ec3454c6f4f5116fb574cee4faaf0c8679141
4
+ data.tar.gz: e64a159903ee961e7fd16f33c0b14752820ecba6
5
5
  SHA512:
6
- metadata.gz: 9dc2f74dcb23d4920633116eda38d8b4d7ced4e364d09955e516df1e42d7a37f6f1c9ea4a850f9561800a9a02d2099d6305a9f1487b54284c4c46f10077913ef
7
- data.tar.gz: 5d71bc709acda2d0765ddb5b56d3f20241c688825cd3c68e97ef56cfd0c6da05f0b8dea6fc6f8b4e3a423c914f7df32291c3d34d8f8d189cb8d84dce15a7127b
6
+ metadata.gz: a8f87f4f8bd2ee6d447acc20246c587cb3ea8ab5cc468613a695f148650d02fb1b924e5eaf8e45bba287bc85a486c322eabb07d18ddb5a55ba1d1d92635b073f
7
+ data.tar.gz: 4cee849187df7c80816e5ede61162c50d9fa99cf7f1f94a60257e1023f368ff1b1461ab5654b61e31f061e5905b1ee7d341c4522381f79821672cc381acf2062
@@ -2,6 +2,9 @@
2
2
 
3
3
  Below is a complete listing of changes for each revision of HighLine.
4
4
 
5
+ ### 1.7.6 / 2015-09-17
6
+ * Fix a typo in a var name affecting solaris. (Danek Duvall (@dhduvall) and Abinoam P. Marques Jr. (@abinoam), #155, PR #156)
7
+
5
8
  ### 1.7.5 / 2015-09-14
6
9
  * Support jruby9k for system extensions (Michael (@mmmries), PR #153)
7
10
 
@@ -235,7 +235,7 @@ class HighLine
235
235
 
236
236
  if /solaris/ =~ RUBY_PLATFORM and
237
237
  `stty` =~ /\brows = (\d+).*\bcolumns = (\d+)/
238
- [$2, $1].map { |c| x.to_i }
238
+ [$2, $1].map { |x| x.to_i }
239
239
  elsif `stty size` =~ /^(\d+)\s(\d+)$/
240
240
  [$2.to_i, $1.to_i]
241
241
  else
@@ -1,4 +1,4 @@
1
1
  class HighLine
2
2
  # The version of the installed library.
3
- VERSION = "1.7.5".freeze
3
+ VERSION = "1.7.6".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.5
4
+ version: 1.7.6
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-09-15 00:00:00.000000000 Z
11
+ date: 2015-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: code_statistics
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
114
  version: '0'
115
115
  requirements: []
116
116
  rubyforge_project: highline
117
- rubygems_version: 2.4.5
117
+ rubygems_version: 2.4.5.1
118
118
  signing_key:
119
119
  specification_version: 4
120
120
  summary: HighLine is a high-level command-line IO library.