Hokkaido 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/Hokkaido.rb +2 -2
- data/lib/Hokkaido/version.rb +1 -1
- metadata +1 -1
data/lib/Hokkaido.rb
CHANGED
@@ -35,9 +35,9 @@ HEREDOC
|
|
35
35
|
|
36
36
|
def self.self_test_result(port)
|
37
37
|
if port.test
|
38
|
-
puts "The #require removal was successful."
|
38
|
+
puts "The #require removal was successful." #.colorize(:green)
|
39
39
|
else
|
40
|
-
puts "The #require removal has failed."
|
40
|
+
puts "The #require removal has failed." #.colorize(:red)
|
41
41
|
end
|
42
42
|
end
|
43
43
|
|
data/lib/Hokkaido/version.rb
CHANGED