# File lib/travis/cli/settings.rb, line 57
      def format_value(value)
        case value
        when false, nil then color("[-]", [ :bold, :red   ])
        when true       then color("[+]", [ :bold, :green ])
        else color(value.to_s.rjust(3),    [ :bold, :blue  ])
        end
      end