class Github::Users
def update(*args)
"bio" => "There once..."
"hireable" => true,
"location" => "San Francisco",
"company" => "GitHub",
"blog" => "https://github.com/blog",
"email" => "octocat@github.com",
"name" => "monalisa octocat",
github.users.update
github = Github.new :oauth_token => '..'
= Examples
* :bio - Optional string
* :hireable - Optional boolean
* :location - Optional string
* :company - Optional string
* :blog - Optional string
* :email - Optional string - publically visible email address
* :name - Optional string
= Inputs
Update the authenticated user
def update(*args) params = args.extract_options! normalize! params filter! VALID_USER_PARAMS_NAMES, params patch_request("/user", params) end