module Github::Users::Keys
def create_key(params={})
"key" => "ssh-rsa AAA..."
@github.users.create_key "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_key(params={}) _normalize_params_keys(params) _filter_params_keys(VALID_KEY_PARAM_NAMES, params) post("/user/keys", params) end