class Github::Users::Keys

def list(*args)


github.users.keys.list { |key| ... }
github.users.keys.list
github = Github.new oauth_token: '...'
= Examples

List public keys for the authenticated user
def list(*args)
  arguments(args)
  response = get_request("/user/keys", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end