Module: Color
Instance Method Summary collapse
Instance Method Details
#line ⇒ Object
10 11 12 |
# File 'lib/capim_tictactoe/color.rb', line 10 def line Rainbow("\n---+---+---\n").red.to_s end |
#o_marker ⇒ Object
18 19 20 |
# File 'lib/capim_tictactoe/color.rb', line 18 def o_marker Rainbow('O').blue end |
#pipe ⇒ Object
6 7 8 |
# File 'lib/capim_tictactoe/color.rb', line 6 def pipe Rainbow(' | ').red.to_s end |
#x_marker ⇒ Object
14 15 16 |
# File 'lib/capim_tictactoe/color.rb', line 14 def x_marker Rainbow('X').green end |