class Github::Orgs::Teams

def list_members(*args)


github.orgs.teams.list_members 'team-id' { |member| ... }
github.orgs.teams.list_members 'team-id'
github = Github.new :oauth_token => '...'
= Examples

In order to list members in a team, the authenticated user must be a member of the team.
List team members
def list_members(*args)
  arguments(args, :required => [:team_id])
  response = get_request("/teams/#{team_id}/members", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end