Class: DNSimple::Commands::DomainList

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

Instance Method Summary collapse

Instance Method Details

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



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

def execute(args, options = {})
  domains = Domain.all
  puts "Found #{domains.length} domains:"
  domains.each do |domain|
    puts "\t#{domain.name}"
  end
end