hyperoslo/heroku-deploy

View on GitHub
lib/heroku/command/deploy/core_ext/string.rb

Summary

Maintainability
A
0 mins
Test Coverage
class String

  def blink
    "\e[5m#{self}\e[0m"
  end

  def gray
    "\e[90m#{self}\e[0m"
  end

  def green
    "\e[92m#{self}\e[0m"
  end

  def red
    "\e[91m#{self}\e[0m"
  end

end