4 5 6 7 8 9 10
# File 'lib/enom/commands/renew_domain.rb', line 4 def execute(args, options={}) name = args.shift domain = Domain.renew!(name) output = "Renewed #{domain.name}" puts output return output end