class Jira::Comment
Public Instance Methods
add(ticket)
click to toggle source
# File lib/jira/commands/comment/add.rb, line 6 def add(ticket) Command::Comment::Add.new(ticket, options).run end
delete(ticket)
click to toggle source
# File lib/jira/commands/comment/delete.rb, line 5 def delete(ticket) Command::Comment::Delete.new(ticket).run end
list(ticket)
click to toggle source
# File lib/jira/commands/comment/list.rb, line 5 def list(ticket) Command::Comment::List.new(ticket).run end
update(ticket)
click to toggle source
# File lib/jira/commands/comment/update.rb, line 5 def update(ticket) Command::Comment::Update.new(ticket).run end