class Github::Users::Keys

def update(key_id, params={})


"key" => "ssh-rsa AAA..."
github.users.followers.update 'key-id', "title" => "octocat@octomac",
github = Github.new :oauth_token => '...'
= Examples

* :key - Required string. sha key
* :title - Required string
= Inputs

Update a public key for the authenticated user
def update(key_id, params={})
  assert_presence_of key_id
  normalize! params
  filter! VALID_KEY_PARAM_NAMES, params
  patch_request("/user/keys/#{key_id}", params)
end