class Github::Users::Keys

def create(params={})


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

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

Create a public key for the authenticated user
def create(params={})
  _normalize_params_keys(params)
  _filter_params_keys(VALID_KEY_PARAM_NAMES, params)
  post_request("/user/keys", params)
end