Sha256: c0830909d025eafa60ad997dcc3b1a3739989ebc08d8ffbafe287086c8f668b4
Contents?: true
Size: 371 Bytes
Versions: 10
Compression:
Stored size: 371 Bytes
Contents
module DNSimple module Commands class DomainDescribe def execute(args, options = {}) name = args.shift domain = Domain.find(name) puts "Domain #{domain.name}:" puts "\tID: #{domain.id}" puts "\tCreated: #{domain.created_at}" puts "\tName Server Status: #{domain.name_server_status}" end end end end
Version data entries
10 entries across 10 versions & 1 rubygems