Sha256: a749d032e26dd07fd695594095b3e9dd8a3c9767537e6729590c7507462ad56a
Contents?: true
Size: 1.03 KB
Versions: 73
Compression:
Stored size: 1.03 KB
Contents
def dns_providers { :aws => { :mocked => false }, :bluebox => { :mocked => false, :zone_attributes => { :ttl => 60 } }, :dnsimple => { :mocked => false }, :dnsmadeeasy => { :mocked => false }, :dynect => { :mocked => false, :zone_attributes => { :email => 'fog@example.com' } }, :linode => { :mocked => false, :zone_attributes => { :email => 'fog@example.com' } }, :zerigo => { :mocked => false }, :rackspace => { :mocked => false, :zone_attributes => { :email => 'fog@example.com' } } } end def generate_unique_domain( with_trailing_dot = false) #get time (with 1/100th of sec accuracy) #want unique domain name and if provider is fast, this can be called more than once per second time= (Time.now.to_f * 100).to_i domain = 'test-' + time.to_s + '.com' if with_trailing_dot domain+= '.' end domain end
Version data entries
73 entries across 73 versions & 11 rubygems