module Github::Orgs::Members

def members(org_name, params={})


@github.orgs.members 'org-name'
@github = Github.new
= Examples

Otherwise only public members are returned.
both concealed and public members will be returned.
If the authenticated user is also a member of this organization then
that belongs to at least 1 team in the organization.
List all users who are members of an organization. A member is a user

List members
def members(org_name, params={})
  _validate_presence_of org_name
  _normalize_params_keys(params)
  response = get("/orgs/#{org_name}/members", params)
  return response unless block_given?
  response.each { |el| yield el }
end