master
warn
$stderr.puts
$stderr.puts "Cannot batch post - environment variable CODECLIMATE_REPO_TOKEN must be set."
This cop identifies places where $stderr.puts can be replaced by warn. The latter has the advantage of easily being disabled by, e.g. the -W0 interpreter flag, or setting $VERBOSE to nil.
# bad$stderr.puts('hello') # goodwarn('hello')