Class: Jira::Command::Sprint

Inherits:
Base
  • Object
show all
Defined in:
lib/jira/commands/sprint.rb

Instance Method Summary collapse

Instance Method Details

#runObject



14
15
16
17
18
19
20
21
22
# File 'lib/jira/commands/sprint.rb', line 14

def run
  return if rapid_view.empty?
  return if no_sprints?
  return if sprint.empty?
  render_table(
    [ 'Sprint', 'State' ],
    [ [ info['sprint']['name'], info['sprint']['state'] ] ]
  )
end