Class: IconProvider::Base
- Inherits:
-
Object
- Object
- IconProvider::Base
- Defined in:
- lib/tldr/reporters/icon_provider.rb
Direct Known Subclasses
Instance Method Summary collapse
- #alarm ⇒ Object
- #error ⇒ Object
- #failure ⇒ Object
- #not_run ⇒ Object
- #rock_on ⇒ Object
- #run ⇒ Object
- #seed ⇒ Object
- #skip ⇒ Object
- #slow ⇒ Object
- #success ⇒ Object
- #tldr ⇒ Object
- #wip ⇒ Object
Instance Method Details
#alarm ⇒ Object
39 40 41 |
# File 'lib/tldr/reporters/icon_provider.rb', line 39 def alarm "" end |
#error ⇒ Object
11 12 13 |
# File 'lib/tldr/reporters/icon_provider.rb', line 11 def error "E" end |
#failure ⇒ Object
7 8 9 |
# File 'lib/tldr/reporters/icon_provider.rb', line 7 def failure "F" end |
#not_run ⇒ Object
35 36 37 |
# File 'lib/tldr/reporters/icon_provider.rb', line 35 def not_run "" end |
#rock_on ⇒ Object
43 44 45 |
# File 'lib/tldr/reporters/icon_provider.rb', line 43 def rock_on "" end |
#run ⇒ Object
23 24 25 |
# File 'lib/tldr/reporters/icon_provider.rb', line 23 def run "" end |
#seed ⇒ Object
47 48 49 |
# File 'lib/tldr/reporters/icon_provider.rb', line 47 def seed "" end |
#skip ⇒ Object
15 16 17 |
# File 'lib/tldr/reporters/icon_provider.rb', line 15 def skip "S" end |
#slow ⇒ Object
31 32 33 |
# File 'lib/tldr/reporters/icon_provider.rb', line 31 def slow "" end |
#success ⇒ Object
3 4 5 |
# File 'lib/tldr/reporters/icon_provider.rb', line 3 def success "." end |
#tldr ⇒ Object
19 20 21 |
# File 'lib/tldr/reporters/icon_provider.rb', line 19 def tldr "!" end |
#wip ⇒ Object
27 28 29 |
# File 'lib/tldr/reporters/icon_provider.rb', line 27 def wip "" end |