Class: DNSimple::Commands::ServiceRemove

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

Instance Method Summary collapse

Instance Method Details

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



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

def execute(args, options = {})
  domain_name = args.shift
  domain = Domain.find(domain_name)
  short_name = args.shift
  service = Service.find(short_name)
  domain.remove_service(service.id)
  puts "Removed #{service.name} from #{domain_name}"
end