Class: GitWand::GitHub::Resource::IssueList
- Inherits:
-
Object
- Object
- GitWand::GitHub::Resource::IssueList
- Defined in:
- lib/git_wand/github/resource/issue_list.rb
Class Method Summary collapse
Class Method Details
.build_from_api_result(result) ⇒ Object
8 9 10 11 12 13 |
# File 'lib/git_wand/github/resource/issue_list.rb', line 8 def self.build_from_api_result(result) return unless result.success? result.body.map do |body| Issue.build_from_result_body(body) end end |