# File lib/handlers/helper.rb, line 69
        def say_array(array, color= nil)
          # NOTE
          # Included for those methods that still return arrays for printing
          # Can be removed eventually
          # Still seems to be a nice way to format the text output of methods
          if array.is_a?(Array)
            array= array.collect {|i| yield(i)} if block_given?
            say array.join("\n"), color
          else
            say "\n"
          end
          array
        end