module Octokit::Client::Issues

Public Instance Methods

ext_update_issue(repo, number, options = {}) click to toggle source

There are these two PRs in the octokit upstream issues. However, both of them are not merged yet. So, I introduced PR 232 by hand. github.com/octokit/octokit.rb/pull/229 github.com/octokit/octokit.rb/pull/232

# File lib/extensions/octokit.rb, line 11
def ext_update_issue(repo, number, options = {})
  patch "#{Repository.path repo}/issues/#{number}", options
end