From 9e568dcd7f758ef74bb4e8c3c24948350a59d36a Mon Sep 17 00:00:00 2001 From: Matthew Breeden Date: Thu, 19 Jun 2014 07:29:43 -0700 Subject: [PATCH] remove www subdomain from digital ocean ssh-key links --- lib/fog/digitalocean/requests/compute/destroy_ssh_key.rb | 2 +- lib/fog/digitalocean/requests/compute/get_ssh_key.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/fog/digitalocean/requests/compute/destroy_ssh_key.rb b/lib/fog/digitalocean/requests/compute/destroy_ssh_key.rb index 08c642468..936c041fd 100644 --- a/lib/fog/digitalocean/requests/compute/destroy_ssh_key.rb +++ b/lib/fog/digitalocean/requests/compute/destroy_ssh_key.rb @@ -5,7 +5,7 @@ module Fog # # Delete a SSH public key from your account # - # @see https://www.developers.digitalocean.com/ssh-keys + # @see https://developers.digitalocean.com/ssh-keys # def destroy_ssh_key(id) request( diff --git a/lib/fog/digitalocean/requests/compute/get_ssh_key.rb b/lib/fog/digitalocean/requests/compute/get_ssh_key.rb index 69693f68b..e61c5ba1b 100644 --- a/lib/fog/digitalocean/requests/compute/get_ssh_key.rb +++ b/lib/fog/digitalocean/requests/compute/get_ssh_key.rb @@ -6,7 +6,7 @@ module Fog # This method shows a specific public SSH key in your account # that can be added to a droplet. # - # @see https://www.developers.digitalocean.com/ssh-keys + # @see https://developers.digitalocean.com/ssh-keys # def get_ssh_key(id) request( @@ -24,7 +24,7 @@ module Fog response.body = { "status" => "OK", # key listing does not return ssh_pub_key - # https://www.developers.digitalocean.com/ssh-keys + # https://developers.digitalocean.com/ssh-keys "ssh_key" => self.data[:ssh_keys].find { |k| k['id'] == id } } response