highline 1.6.10 → 1.6.11
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/test/tc_highline.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/highline.rb
CHANGED
@@ -30,7 +30,7 @@ require "highline/style"
|
|
30
30
|
#
|
31
31
|
class HighLine
|
32
32
|
# The version of the installed library.
|
33
|
-
VERSION = "1.6.
|
33
|
+
VERSION = "1.6.11".freeze
|
34
34
|
|
35
35
|
# An internal HighLine error. User code does not need to trap this.
|
36
36
|
class QuestionError < StandardError
|
data/test/tc_highline.rb
CHANGED
@@ -957,6 +957,6 @@ class TestHighLine < Test::Unit::TestCase
|
|
957
957
|
assert_not_nil(HighLine::VERSION)
|
958
958
|
assert_instance_of(String, HighLine::VERSION)
|
959
959
|
assert(HighLine::VERSION.frozen?)
|
960
|
-
assert_match(/\A\d
|
960
|
+
assert_match(/\A\d+\.\d+\.\d+\Z/, HighLine::VERSION)
|
961
961
|
end
|
962
962
|
end
|