Module: AppTester::Utils::Colours
- Extended by:
- Colours
- Included in:
- AppTester::Utils, Colours
- Defined in:
- lib/app-tester/utils/colors.rb
Instance Method Summary collapse
- #black(message = "") ⇒ Object
- #blue(message = "") ⇒ Object
- #brown(message = "") ⇒ Object
- #cyan(message = "") ⇒ Object
- #dark_gray(message = "") ⇒ Object
- #green(message = "") ⇒ Object
- #light_blue(message = "") ⇒ Object
- #light_cyan(message = "") ⇒ Object
- #light_gray(message = "") ⇒ Object
- #light_green(message = "") ⇒ Object
- #light_purple(message = "") ⇒ Object
- #light_red(message = "") ⇒ Object
- #purple(message = "") ⇒ Object
- #red(message = "") ⇒ Object
- #white(message = "") ⇒ Object
- #yellow(message = "") ⇒ Object
Instance Method Details
#black(message = "") ⇒ Object
7 8 9 |
# File 'lib/app-tester/utils/colors.rb', line 7 def black ="" ("0;30", ) end |
#blue(message = "") ⇒ Object
10 11 12 |
# File 'lib/app-tester/utils/colors.rb', line 10 def blue ="" ("0;34", ) end |
#brown(message = "") ⇒ Object
25 26 27 |
# File 'lib/app-tester/utils/colors.rb', line 25 def brown ="" ("0;33", ) end |
#cyan(message = "") ⇒ Object
16 17 18 |
# File 'lib/app-tester/utils/colors.rb', line 16 def cyan ="" ("0;36", ) end |
#dark_gray(message = "") ⇒ Object
31 32 33 |
# File 'lib/app-tester/utils/colors.rb', line 31 def dark_gray ="" ("1;30", ) end |
#green(message = "") ⇒ Object
13 14 15 |
# File 'lib/app-tester/utils/colors.rb', line 13 def green ="" ("0;32", ) end |
#light_blue(message = "") ⇒ Object
34 35 36 |
# File 'lib/app-tester/utils/colors.rb', line 34 def light_blue ="" ("1;34", ) end |
#light_cyan(message = "") ⇒ Object
40 41 42 |
# File 'lib/app-tester/utils/colors.rb', line 40 def light_cyan ="" ("1;36", ) end |
#light_gray(message = "") ⇒ Object
28 29 30 |
# File 'lib/app-tester/utils/colors.rb', line 28 def light_gray ="" ("0;37", ) end |
#light_green(message = "") ⇒ Object
37 38 39 |
# File 'lib/app-tester/utils/colors.rb', line 37 def light_green ="" ("1;32", ) end |
#light_purple(message = "") ⇒ Object
46 47 48 |
# File 'lib/app-tester/utils/colors.rb', line 46 def light_purple ="" ("1;35", ) end |
#light_red(message = "") ⇒ Object
43 44 45 |
# File 'lib/app-tester/utils/colors.rb', line 43 def light_red ="" ("1;31", ) end |
#purple(message = "") ⇒ Object
22 23 24 |
# File 'lib/app-tester/utils/colors.rb', line 22 def purple ="" ("0;35", ) end |
#red(message = "") ⇒ Object
19 20 21 |
# File 'lib/app-tester/utils/colors.rb', line 19 def red ="" ("0;31", ) end |
#white(message = "") ⇒ Object
52 53 54 |
# File 'lib/app-tester/utils/colors.rb', line 52 def white ="" ("1;37", ) end |
#yellow(message = "") ⇒ Object
49 50 51 |
# File 'lib/app-tester/utils/colors.rb', line 49 def yellow ="" ("1;33", ) end |