class Github::Users::Keys

def create(*args)


github.users.keys.create "title": "octocat@octomac", "key": "ssh-rsa AAA..."
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(*args)
  arguments(args) do
    sift VALID_KEY_PARAM_NAMES
  end
  post_request("/user/keys", arguments.params)
end