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
  filter! VALID_KEY_PARAM_NAMES, params
  post_request("/user/keys", params)
end