Sha256: 8a4c0381328445d36f83f28200298812a8f9cfb95616d04ec65f967a04b295ed
Contents?: true
Size: 534 Bytes
Versions: 38
Compression:
Stored size: 534 Bytes
Contents
require 'fog/core/collection' require 'fog/dnsimple/models/dns/zone' module Fog module DNS class DNSimple class Zones < Fog::Collection model Fog::DNS::DNSimple::Zone def all clear data = connection.list_domains.body.map {|zone| zone['domain']} load(data) end def get(zone_id) data = connection.get_domain(zone_id).body['domain'] new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
38 entries across 38 versions & 13 rubygems