Class: Jira::Command::Comment::List

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ticket) ⇒ List

Returns a new instance of List.



17
18
19
# File 'lib/jira/commands/comment/list.rb', line 17

def initialize(ticket)
  self.ticket = ticket
end

Instance Attribute Details

#ticketObject

Returns the value of attribute ticket.



15
16
17
# File 'lib/jira/commands/comment/list.rb', line 15

def ticket
  @ticket
end

Instance Method Details

#runObject



21
22
23
24
25
26
27
28
29
# File 'lib/jira/commands/comment/list.rb', line 21

def run
  return if comments.nil?

  if comments.empty?
    puts "Ticket #{ticket} has no comments."
    return
  end
  render_table(header, rows)
end