highline 1.7.6 → 1.7.7

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: 3d2ec3454c6f4f5116fb574cee4faaf0c8679141
4
- data.tar.gz: e64a159903ee961e7fd16f33c0b14752820ecba6
3
+ metadata.gz: 0322744bd14cd2bc95f5c9227aa0cd43e16754b7
4
+ data.tar.gz: d0238fa92ad538d5ca8c6f00016fd268ebb850e9
5
5
  SHA512:
6
- metadata.gz: a8f87f4f8bd2ee6d447acc20246c587cb3ea8ab5cc468613a695f148650d02fb1b924e5eaf8e45bba287bc85a486c322eabb07d18ddb5a55ba1d1d92635b073f
7
- data.tar.gz: 4cee849187df7c80816e5ede61162c50d9fa99cf7f1f94a60257e1023f368ff1b1461ab5654b61e31f061e5905b1ee7d341c4522381f79821672cc381acf2062
6
+ metadata.gz: b7a445bf62871bb1d0bfdf6dba0ad055cd6ea4f7e612315f09bfae40c996ae84e881d73b034cd3c374c97e02201045d52b4c564c5853b475b342756837a4ae75
7
+ data.tar.gz: 34eef4f28c8392acb102d750d1b6df52f26f4a9fd61de9a8f5ad671abe369824a68d02319188806de7b59013224e48a2453c34d8fd24d7832a96a3d3e9364236
@@ -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.7 / 2015-09-22
6
+ * Make HighLine::Question coerce its question argument into a String. (@97-109-107 and Abinoam P. Marques Jr. (@abinoam), #159, PR #160)
7
+
5
8
  ### 1.7.6 / 2015-09-17
6
9
  * Fix a typo in a var name affecting solaris. (Danek Duvall (@dhduvall) and Abinoam P. Marques Jr. (@abinoam), #155, PR #156)
7
10
 
@@ -31,7 +31,7 @@ class HighLine
31
31
  #
32
32
  def initialize( question, answer_type )
33
33
  # initialize instance data
34
- @question = question.dup
34
+ @question = String(question).dup
35
35
  @answer_type = answer_type
36
36
  @completion = @answer_type
37
37
 
@@ -1,4 +1,4 @@
1
1
  class HighLine
2
2
  # The version of the installed library.
3
- VERSION = "1.7.6".freeze
3
+ VERSION = "1.7.7".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.6
4
+ version: 1.7.7
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-17 00:00:00.000000000 Z
11
+ date: 2015-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: code_statistics