Sha256: 0b8331f95001ae75ffeeeafa633b071f8be44aff29d4905a2c358689330d8885
Contents?: true
Size: 372 Bytes
Versions: 18
Compression:
Stored size: 372 Bytes
Contents
# frozen_string_literal: true # frozen_string_literal: true\ require 'colorize' module GoNative module Utils module UI class << self def info(msg) puts msg.colorize(:green) end def output(msg) puts msg end def error(msg) puts msg.colorize(:red) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems