class Github::Orgs

def get(org_name, params={})


github.orgs.get 'github'
github = Github.new
= Examples

Get properties for a single organization
def get(org_name, params={})
  _validate_presence_of org_name
  get_request("/orgs/#{org_name}", params)
end