From a9730d2dfe6327737246d54156e7a49142aa0b03 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sun, 2 Oct 2016 07:32:26 -0400 Subject: [PATCH] fixed colorized bold output. --- lib/apex.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apex.rb b/lib/apex.rb index e4316e6..65e7908 100644 --- a/lib/apex.rb +++ b/lib/apex.rb @@ -20,7 +20,7 @@ module Apex puts (port_name + ' << ').colorize(:magenta) + formatted_aprs else # TODO : make this bold and/or blink - puts (port_name + ' >> ').colorize(:magenta).bold.blink + formatted_aprs + puts (port_name + ' >> ').colorize(:color => :magenta, :mode => :bold) + formatted_aprs end end -- GitLab