kapost/kapost_deploy

View on GitHub
lib/kapost_deploy/heroku/app_promoter.rb

Summary

Maintainability
A
0 mins
Test Coverage

Do not write to stdout. Use Rails's logger if you want to log.
Open

          print "."

This cop checks for the use of output calls like puts and print

Example:

# bad
puts 'A debug message'
pp 'A debug message'
print 'A debug message'

# good
Rails.logger.debug 'A debug message'

There are no issues that match your filters.

Category
Status