Method: PivotalShell::Configuration.status_icon
- Defined in:
- lib/pivotal_shell/configuration.rb
.status_icon(status) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/pivotal_shell/configuration.rb', line 39 def self.status_icon(status) { 'unscheduled' => ' ', 'unstarted' => '.', 'started' => 'S', 'finished' => 'F', 'delivered' => 'D', 'accepted' => 'A', 'rejected' => 'R' }[status] end |