web-dev-qa-db-ja.com

色付きRuby出力

ターミナルでの出力のために背景と前景のテキストの色付けを行う宝石はありますか?

Pascalをプログラミングするとき、私たち全員がtextcolor(...)プロシージャで遊んで、小さな教育プログラムをよりきれいで見栄えのするようにしたことを覚えています。

Rubyに似たようなものはありますか?

250
gmile

Colorizeは私のお気に入りの逸品です! :-)

見てみな:

https://github.com/fazibear/colorize

インストール:

gem install colorize

使用法:

require 'colorize'

puts "I am now red".red
puts "I am now blue".blue
puts "Testing".yellow
360
jaredmdobson

上記の回答を組み合わせることで、別の依存関係を必要とせずにgem colorizeのように機能するものを実装できます。

class String
  # colorization
  def colorize(color_code)
    "\e[#{color_code}m#{self}\e[0m"
  end

  def red
    colorize(31)
  end

  def green
    colorize(32)
  end

  def yellow
    colorize(33)
  end

  def blue
    colorize(34)
  end

  def pink
    colorize(35)
  end

  def light_blue
    colorize(36)
  end
end
231
Erik Skoglund

Stringクラスメソッドとして(unixのみ):

class String
def black;          "\e[30m#{self}\e[0m" end
def red;            "\e[31m#{self}\e[0m" end
def green;          "\e[32m#{self}\e[0m" end
def brown;          "\e[33m#{self}\e[0m" end
def blue;           "\e[34m#{self}\e[0m" end
def Magenta;        "\e[35m#{self}\e[0m" end
def cyan;           "\e[36m#{self}\e[0m" end
def gray;           "\e[37m#{self}\e[0m" end

def bg_black;       "\e[40m#{self}\e[0m" end
def bg_red;         "\e[41m#{self}\e[0m" end
def bg_green;       "\e[42m#{self}\e[0m" end
def bg_brown;       "\e[43m#{self}\e[0m" end
def bg_blue;        "\e[44m#{self}\e[0m" end
def bg_Magenta;     "\e[45m#{self}\e[0m" end
def bg_cyan;        "\e[46m#{self}\e[0m" end
def bg_gray;        "\e[47m#{self}\e[0m" end

def bold;           "\e[1m#{self}\e[22m" end
def italic;         "\e[3m#{self}\e[23m" end
def underline;      "\e[4m#{self}\e[24m" end
def blink;          "\e[5m#{self}\e[25m" end
def reverse_color;  "\e[7m#{self}\e[27m" end
end

および使用法:

puts "I'm back green".bg_green
puts "I'm red and back cyan".red.bg_cyan
puts "I'm bold and green and backround red".bold.green.bg_red

私のコンソールで:

enter image description here

追加:

def no_colors
  self.gsub /\e\[\d+m/, ""
end

フォーマット文字を削除します

注意

puts "\e[31m" # set format (red foreground)
puts "\e[0m"   # clear format
puts "green-#{"red".red}-green".green # will be green-red-normal, because of \e[0
194
Ivan Black

Erik Skoglundらの回答に基づいて、基本的なカラーモードをテストするための小さな方法を書きました。

#outputs color table to console, regular and bold modes
def colortable
  names = %w(black red green yellow blue pink cyan white default)
  fgcodes = (30..39).to_a - [38]

  s = ''
  reg  = "\e[%d;%dm%s\e[0m"
  bold = "\e[1;%d;%dm%s\e[0m"
  puts '                       color table with these background codes:'
  puts '          40       41       42       43       44       45       46       47       49'
  names.Zip(fgcodes).each {|name,fg|
    s = "#{fg}"
    puts "%7s "%name + "#{reg}  #{bold}   "*9 % [fg,40,s,fg,40,s,  fg,41,s,fg,41,s,  fg,42,s,fg,42,s,  fg,43,s,fg,43,s,  
      fg,44,s,fg,44,s,  fg,45,s,fg,45,s,  fg,46,s,fg,46,s,  fg,47,s,fg,47,s,  fg,49,s,fg,49,s ]
  }
end

出力例: Ruby colortest

39
icy

ANSIエスケープシーケンスを使用して、コンソールでこれを行うことができます。これはLinuxとOSXで動作することは知っていますが、Windowsコンソール(cmd)がANSIをサポートしているかどうかはわかりません。

私はJavaでそれをしましたが、アイデアは同じです。

//foreground color
public static final String BLACK_TEXT()   { return "\033[30m";}
public static final String RED_TEXT()     { return "\033[31m";}
public static final String GREEN_TEXT()   { return "\033[32m";}
public static final String BROWN_TEXT()   { return "\033[33m";}
public static final String BLUE_TEXT()    { return "\033[34m";}
public static final String Magenta_TEXT() { return "\033[35m";}
public static final String CYAN_TEXT()    { return "\033[36m";}
public static final String GRAY_TEXT()    { return "\033[37m";}

//background color
public static final String BLACK_BACK()   { return "\033[40m";}
public static final String RED_BACK()     { return "\033[41m";}
public static final String GREEN_BACK()   { return "\033[42m";}
public static final String BROWN_BACK()   { return "\033[43m";}
public static final String BLUE_BACK()    { return "\033[44m";}
public static final String Magenta_BACK() { return "\033[45m";}
public static final String CYAN_BACK()    { return "\033[46m";}
public static final String WHITE_BACK()   { return "\033[47m";}

//ANSI control chars
public static final String RESET_COLORS() { return "\033[0m";}
public static final String BOLD_ON()      { return "\033[1m";}
public static final String BLINK_ON()     { return "\033[5m";}
public static final String REVERSE_ON()   { return "\033[7m";}
public static final String BOLD_OFF()     { return "\033[22m";}
public static final String BLINK_OFF()    { return "\033[25m";}
public static final String REVERSE_OFF()  { return "\033[27m";}
36
Ryan Michela

他の答えはほとんどの人にとっては問題なく機能しますが、これを行うための「正しい」Unixの方法に言及する必要があります。すべてのタイプのテキスト端末がこれらのシーケンスをサポートしていないため、さまざまなテキスト端末の機能の抽象化であるterminfoデータベースを照会できます。これは主に歴史的な関心事のように思われます。現在使用中のソフトウェア端末は一般にANSIシーケンスをサポートしますが、(少なくとも)1つの実用的な効果があります。環境変数TERMdumb出力をテキストファイルに保存する場合など、そのようなスタイル設定をすべて回避します。また、物事を行うのは良い気分ですright。 :-)

Ruby-terminfo gemを使用できます。インストールにはCコンパイルが必要です。 Ubuntu 14.10システムに以下をインストールできました。

$ Sudo apt-get install libncurses5-dev
$ gem install Ruby-terminfo --user-install

次に、次のようにデータベースにクエリを実行できます(使用可能なコードのリストについては、 terminfoのマニュアルページ を参照してください)。

require 'terminfo' 
TermInfo.control("bold")
puts "Bold text"
TermInfo.control("sgr0")
puts "Back to normal."
puts "And now some " + TermInfo.control_string("setaf", 1) + 
     "red" + TermInfo.control_string("sgr0") + " text."

使いやすくするためにまとめた小さなラッパークラスを次に示します。

require 'terminfo'

class Style
  def self.style() 
    @@singleton ||= Style.new
  end

  colors = %w{black red green yellow blue Magenta cyan white}
  colors.each_with_index do |color, index|
    define_method(color) { get("setaf", index) }
    define_method("bg_" + color) { get("setab", index) }
  end

  def bold()  get("bold")  end
  def under() get("smul")  end
  def dim()   get("dim")   end
  def clear() get("sgr0")  end

  def get(*args)
    begin
      TermInfo.control_string(*args)
    rescue TermInfo::TermInfoError
      ""
    end
  end
end

使用法:

c = Style.style
C = c.clear
puts "#{c.red}Warning:#{C} this is #{c.bold}way#{C} #{c.bg_red}too much #{c.cyan + c.under}styling#{C}!"
puts "#{c.dim}(Don't you think?)#{C}"

Output of above Ruby script

(編集)最後に、gemを必要としない場合は、tputプログラムに依存できます。 ここで説明 – Rubyの例:

puts "Hi! " + `tput setaf 1` + "This is red!" + `tput sgr0`
14
skagedal

私はこの方法を作成しました。大したことではありませんが、動作します:

def colorize(text, color = "default", bgColor = "default")
    colors = {"default" => "38","black" => "30","red" => "31","green" => "32","brown" => "33", "blue" => "34", "purple" => "35",
     "cyan" => "36", "gray" => "37", "dark gray" => "1;30", "light red" => "1;31", "light green" => "1;32", "yellow" => "1;33",
      "light blue" => "1;34", "light purple" => "1;35", "light cyan" => "1;36", "white" => "1;37"}
    bgColors = {"default" => "0", "black" => "40", "red" => "41", "green" => "42", "brown" => "43", "blue" => "44",
     "purple" => "45", "cyan" => "46", "gray" => "47", "dark gray" => "100", "light red" => "101", "light green" => "102",
     "yellow" => "103", "light blue" => "104", "light purple" => "105", "light cyan" => "106", "white" => "107"}
    color_code = colors[color]
    bgColor_code = bgColors[bgColor]
    return "\033[#{bgColor_code};#{color_code}m#{text}\033[0m"
end

使用方法は次のとおりです。

puts "#{colorize("Hello World")}"
puts "#{colorize("Hello World", "yellow")}"
puts "#{colorize("Hello World", "white","light red")}"

可能な改善点は次のとおりです。

  • colorsbgColorsは、メソッドが呼び出されるたびに定義され、変更されません。
  • boldunderlinedimなどの他のオプションを追加します。

pは引数に対してpを実行するため、このメソッドはinspectに対して機能しません。例えば:

p "#{colorize("Hello World")}"

「\ e [0; 38mHello World\e [0m」と表示されます

putsprint、およびLogger gemでテストしましたが、正常に動作します。


これを改善してクラスを作成し、colorsbgColorsがクラス定数であり、colorizeがクラスメソッドであるようにしました。

編集:より良いコードスタイル、クラス変数の代わりに定数を定義、文字列の代わりにシンボルを使用、太字、斜体などのオプションを追加.

class Colorizator
    COLOURS = { default: '38', black: '30', red: '31', green: '32', brown: '33', blue: '34', purple: '35',
                cyan: '36', gray: '37', dark_gray: '1;30', light_red: '1;31', light_green: '1;32', yellow: '1;33',
                light_blue: '1;34', light_purple: '1;35', light_cyan: '1;36', white: '1;37' }.freeze
    BG_COLOURS = { default: '0', black: '40', red: '41', green: '42', brown: '43', blue: '44',
                   purple: '45', cyan: '46', gray: '47', dark_gray: '100', light_red: '101', light_green: '102',
                   yellow: '103', light_blue: '104', light_purple: '105', light_cyan: '106', white: '107' }.freeze

    FONT_OPTIONS = { bold: '1', dim: '2', italic: '3', underline: '4', reverse: '7', hidden: '8' }.freeze

    def self.colorize(text, colour = :default, bg_colour = :default, **options)
        colour_code = COLOURS[colour]
        bg_colour_code = BG_COLOURS[bg_colour]
        font_options = options.select { |k, v| v && FONT_OPTIONS.key?(k) }.keys
        font_options = font_options.map { |e| FONT_OPTIONS[e] }.join(';').squeeze
        return "\e[#{bg_colour_code};#{font_options};#{colour_code}m#{text}\e[0m".squeeze(';')
    end
end

次のようにして使用できます。

Colorizator.colorize "Hello World", :gray, :white
Colorizator.colorize "Hello World", :light_blue, bold: true
Colorizator.colorize "Hello World", :light_blue, :white, bold: true, underline: true
13
Redithion

私はいくつか見つけました:

http://github.com/ssoroka/ansi/tree/master

例:

puts ANSI.color(:red) { "hello there" }
puts ANSI.color(:green) + "Everything is green now" + ANSI.no_color

http://flori.github.com/term-ansicolor/

例:

print red, bold, "red bold", reset, "\n"
print red(bold("red bold")), "\n"
print red { bold { "red bold" } }, "\n"

http://github.com/sickill/Rainbow

例:

puts "this is red".foreground(:red) + " and " + "this on yellow bg".background(:yellow) + " and " + "even bright underlined!".underline.bright

Windowsを使用している場合は、「gem install win32console」を実行して色のサポートを有効にする必要がある場合があります。

また、独自のgemを作成する必要がある場合は、記事 コンソールRubyスクリプト出力の色付け が役立ちます。 ANSIカラーリングを文字列に追加する方法を説明します。この知識を使用して、文字列などを拡張するクラスにラップできます。

12
Petros

宝石を必要とせずに機能させるために私がやったことは次のとおりです。

def red(mytext) ; "\e[31m#{mytext}\e[0m" ; end
puts red("hello world")

引用符内のテキストのみが色付けされ、定期的にスケジュールされているプログラムに戻ります。

12
suzyQ

これはあなたを助けるかもしれません: Colorized Ruby output

8
ennuikiller

上記の回答は有用であることがわかりましたが、ログ出力のようなものを色付けしたい場合、法案に適合しませんでしたwithoutサードパーティのライブラリを使用します。以下は私のために問題を解決しました:

red = 31
green = 32
blue = 34

def color (color=blue)
  printf "\033[#{color}m";
  yield
  printf "\033[0m"
end

color { puts "this is blue" }
color(red) { logger.info "and this is red" }

私はそれが役立つことを願っています!

3
pmyjavec