class String

AVOCADO The flexible and easy to use deployment framework for web applications

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Public Instance Methods

cyan() click to toggle source

Paints the string cyan on CLI

# File lib/avodeploy/core_ext/string_colors.rb, line 32
def cyan
  "\033[36m#{self}\033[0m"
end
gray() click to toggle source

Paints the string gray on CLI

# File lib/avodeploy/core_ext/string_colors.rb, line 42
def gray
  "\033[37m#{self}\033[0m"
end
green() click to toggle source

Paints the string green on CLI

# File lib/avodeploy/core_ext/string_colors.rb, line 27
def green
  "\033[32m#{self}\033[0m"
end
red() click to toggle source

Paints the string red on CLI

# File lib/avodeploy/core_ext/string_colors.rb, line 22
def red
  "\033[31m#{self}\033[0m"
end
yellow() click to toggle source

Paints the string yellow on CLI

# File lib/avodeploy/core_ext/string_colors.rb, line 37
def yellow
  "\e[33m#{self}\e[0m"
end