Class: Lazylead::Comments

Inherits:
Object
  • Object
show all
Defined in:
lib/lazylead/system/jira.rb

Overview

The jira issue comments

Author

Yurii Dubinka ([email protected])

Copyright

Copyright © 2019-2020 Yurii Dubinka

License

MIT

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(issue, sys) ⇒ Comments

Returns a new instance of Comments.



301
302
303
304
# File 'lib/lazylead/system/jira.rb', line 301

def initialize(issue, sys)
  @issue = issue
  @sys = sys
end

Instance Attribute Details

#issueObject (readonly)

Returns the value of attribute issue.



299
300
301
# File 'lib/lazylead/system/jira.rb', line 299

def issue
  @issue
end

Instance Method Details

#body?(text) ⇒ Boolean

Returns:

  • (Boolean)


306
307
308
# File 'lib/lazylead/system/jira.rb', line 306

def body?(text)
  comments.any? { |c| c.attrs["body"].include? text }
end

#commentsObject



310
311
312
313
314
315
# File 'lib/lazylead/system/jira.rb', line 310

def comments
  @comments ||= @sys.raw do |conn|
    conn.Issue.find(@issue.id, expand: "comments,changelog", fields: "")
        .comments
  end
end

#last(quantity) ⇒ Object



317
318
319
# File 'lib/lazylead/system/jira.rb', line 317

def last(quantity)
  comments.last(quantity).map { |c| c.attrs["body"] }
end