Class: DNSimple::Commands::DomainDelete

Inherits:
Object
  • Object
show all
Defined in:
lib/dnsimple/commands/domain_delete.rb

Instance Method Summary collapse

Instance Method Details

#execute(args, options = {}) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/dnsimple/commands/domain_delete.rb', line 4

def execute(args, options = {})
  name_or_id = args.shift

  domain = Domain.find(name_or_id)
  domain.delete

  puts "Deleted #{domain.name}"
end