module OpsworksRollingDeploy::OutputMethods

Public Instance Methods

info(*strs) click to toggle source
# File lib/opsworks_rolling_deploy/output_methods.rb, line 9
def info(*strs)
  puts strs.join(' ').blue
end
warn(*strs) click to toggle source
# File lib/opsworks_rolling_deploy/output_methods.rb, line 5
def warn(*strs)
  puts strs.join(' ').yellow
end