Class: Geet::Gitlab::Issue

Inherits:
Object
  • Object
show all
Defined in:
lib/geet/gitlab/issue.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(number, title, link) ⇒ Issue

Returns a new instance of Issue.



8
9
10
11
12
# File 'lib/geet/gitlab/issue.rb', line 8

def initialize(number, title, link)
  @number = number
  @title = title
  @link = link
end

Instance Attribute Details

Returns the value of attribute link.



6
7
8
# File 'lib/geet/gitlab/issue.rb', line 6

def link
  @link
end

#numberObject (readonly)

Returns the value of attribute number.



6
7
8
# File 'lib/geet/gitlab/issue.rb', line 6

def number
  @number
end

#titleObject (readonly)

Returns the value of attribute title.



6
7
8
# File 'lib/geet/gitlab/issue.rb', line 6

def title
  @title
end

Class Method Details

.list(api_interface, assignee: nil) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/geet/gitlab/issue.rb', line 14

def self.list(api_interface, assignee: nil)
  raise "Assignee filtering not currently supported!" if assignee

  api_path = "projects/#{api_interface.path_with_namespace(encoded: true)}/issues"

  response = api_interface.send_request(api_path, multipage: true)

  response.each_with_object([]) do |issue_data, result|
    number = issue_data.fetch('iid')
    title = issue_data.fetch('title')
    link = issue_data.fetch('web_url')

    result << new(number, title, link)
  end
end