Sha256: 0d87567f7a48e44082557992ea474a1d8ad17d2e5e8fcb2576280a4401ce818a

Contents?: true

Size: 767 Bytes

Versions: 5

Compression:

Stored size: 767 Bytes

Contents

module ProMotion::MotionTable
  # @author Silas J Matson
  # 
  # Provides coloring for displaying messages in console when running in the simulator
  class Console
    NAME = "MotionTable::Console"
    DEFAULT_COLOR = [ '', '' ]
    RED_COLOR = [ "\e[0;31m", "\e[0m" ] # Must be in double quotes
    GREEN_COLOR = [ "\e[0;32m", "\e[0m" ] 
    PURPLE_COLOR = [ "\e[0;35m", "\e[0m" ] 

    class << self
      def log(obj, actionNotImplemented:action)
        log " actionNotImplemented -- the action :#{action} is not implemented in #{obj.class.to_s}", withColor: RED_COLOR
      end

      def log(log, withColor:color)
        puts color[0] + NAME + log + color[1]
      end

      def log(log)
        log(log, withColor: DEFAULT_COLOR)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ProMotion-0.3.0 lib/ProMotion/helpers/motion-table/console.rb
ProMotion-0.2.0 lib/ProMotion/helpers/motion-table/console.rb
ProMotion-0.1.2 lib/ProMotion/helpers/motion-table/console.rb
ProMotion-0.1.1 lib/ProMotion/helpers/motion-table/console.rb
ProMotion-0.1.0 lib/ProMotion/helpers/motion-table/console.rb