4 5 6 7 8 9 10
# File 'lib/enom/commands/check_domain.rb', line 4 def execute(args, options={}) name = args.shift response = Domain.check(name) output = "#{name} is #{response}" puts output return output end