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/list_domains.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

34 lines
831 B
Ruby

module Fog
module DNS
class DNSimple
class Real
# Get the details for a specific domain in your account. You
# may pass either the domain numeric ID or the domain name itself.
#
# ==== Parameters
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * <~Array>:
# * 'domain'<~Hash> The representation of the domain.
def list_domains
request(
:expects => 200,
:method => 'GET',
:path => '/domains'
)
end
end
class Mock
def list_domains
response = Excon::Response.new
response.status = 200
response.body = self.data[:domains]
response
end
end
end
end
end