Sha256: 25a0fb9320099814803f7b2b3f46841e678b198fc4093d046d42459c44b7086c

Contents?: true

Size: 958 Bytes

Versions: 6

Compression:

Stored size: 958 Bytes

Contents

module ProMotion
  class Console
    NAME = "RubyMotion::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(log, with_color:color)
        return if RUBYMOTION_ENV == "test"
        PM.logger.deprecated "ProMotion::Console.log is deprecated. Use PM.logger (see README)"
        puts color[0] + NAME + log + color[1]
      end

      def log(log, withColor:color)
        return if RUBYMOTION_ENV == "test"
        PM.logger.deprecated "ProMotion::Console.log is deprecated. Use PM.logger (see README)"
        self.log(log, with_color:color)
      end

      def log(log)
        return if RUBYMOTION_ENV == "test"
        PM.logger.deprecated "ProMotion::Console.log is deprecated. Use PM.logger (see README)"
        log(log, with_color: DEFAULT_COLOR)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ProMotion-0.6.5 lib/ProMotion/helpers/console.rb
ProMotion-0.6.4 lib/ProMotion/helpers/console.rb
ProMotion-0.6.3 lib/ProMotion/helpers/console.rb
ProMotion-0.6.2 lib/ProMotion/helpers/console.rb
ProMotion-0.6.1 lib/ProMotion/helpers/console.rb
ProMotion-0.6.0 lib/ProMotion/helpers/console.rb