module Rise::Text
Constants
- TASKS_HELP
Public Class Methods
vputs(msg='')
click to toggle source
Prints msg
if the RISE_VERBOSE
environment variable is set to 'yes' (set with –verbose)
# File lib/core/text.rb, line 20 def self.vputs(msg='') puts("[" + Paint["VERBOSE", "yellow"] + "] - " + msg) if ENV['RISE_VERBOSE'] == 'yes' end