class Github::Activity::Events

def issue(user_name, repo_name, params={})


github.events.issue 'user-name', 'repo-name' { |event| ... }
github.events.issue 'user-name', 'repo-name'
github = Github.new
= Examples

List all issue events for a given repository
def issue(user_name, repo_name, params={})
  set :user => user_name, :repo => repo_name
  assert_presence_of user, repo
  normalize! params
  response = get_request("/repos/#{user}/#{repo}/issues/events", params)
  return response unless block_given?
  response.each { |el| yield el }
end