class Github::Orgs

def edit_org(org_name, params={})


"name" => "github"
"location" => "San Francisco",
"email" => "support@github.com",
"company" => "GitHub",
"blog" => "https://github.com/blog",
"billing_email" => "support@github.com",
@github.orgs.edit_org 'github',
@github = Github.new :oauth_token => '...'
= Examples

:name - Optional string
:location - Optional string
:email - Optional string
:company - Optional string
:billing_email - Optional string - Billing email address. This address is not publicized.
= Parameters

Edit organization
def edit_org(org_name, params={})
  _validate_presence_of org_name
  _normalize_params_keys(params)
  _filter_params_keys(VALID_ORG_PARAM_NAMES, params)
  patch("/orgs/#{org_name}", params)
end