1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/dnsimple/requests/dns/delete_domain.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

35 lines
930 B
Ruby

module Fog
module DNS
class DNSimple
class Real
# Delete the given domain from your account. You may use
# either the domain ID or the domain name.
#
# Please note that for domains which are registered with
# DNSimple this will not delete the domain from the registry.
#
# ==== Parameters
# * domain<~String> - domain name or numeric ID
#
def delete_domain(domain)
request(
:expects => 200,
:method => 'DELETE',
:path => "/domains/#{domain}"
)
end
end
class Mock
def delete_domain(name)
self.data[:records].delete name
self.data[:domains].reject! { |domain| domain["domain"]["name"] == name }
response = Excon::Response.new
response.status = 200
response
end
end
end
end
end