Class: Enom::Commands::RegisterDomain

Inherits:
Object
  • Object
show all
Defined in:
lib/enom/commands/register_domain.rb

Instance Method Summary collapse

Instance Method Details

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



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

def execute(args, options={})
  name = args.shift
  domain = Domain.register!(name)
  output = "Registered #{domain.name}"
  puts output
  return output
end