Class: Octopi::IssueSet
- Inherits:
-
Array
- Object
- Array
- Octopi::IssueSet
- Includes:
- Octopi
- Defined in:
- lib/octopi/issue_set.rb
Instance Attribute Summary collapse
-
#repository ⇒ Object
Returns the value of attribute repository.
-
#user ⇒ Object
Returns the value of attribute user.
Instance Method Summary collapse
- #find(number) ⇒ Object
-
#initialize(array) ⇒ IssueSet
constructor
A new instance of IssueSet.
- #search(options = {}) ⇒ Object
Methods included from Octopi
#authenticated, #authenticated_with
Constructor Details
#initialize(array) ⇒ IssueSet
6 7 8 9 10 |
# File 'lib/octopi/issue_set.rb', line 6 def initialize(array) self.user = array.first.user self.repository = array.first.repository super(array) end |
Instance Attribute Details
#repository ⇒ Object
Returns the value of attribute repository.
4 5 6 |
# File 'lib/octopi/issue_set.rb', line 4 def repository @repository end |
#user ⇒ Object
Returns the value of attribute user.
4 5 6 |
# File 'lib/octopi/issue_set.rb', line 4 def user @user end |
Instance Method Details
#find(number) ⇒ Object
12 13 14 15 16 |
# File 'lib/octopi/issue_set.rb', line 12 def find(number) issue = detect { |issue| issue.number == number } raise NotFound, Issue if issue.nil? issue end |
#search(options = {}) ⇒ Object
18 19 20 |
# File 'lib/octopi/issue_set.rb', line 18 def search(={}) Issue.search(.merge(:user => user, :repo => repository)) end |