From ed04bd3c0fff100f40ed45d300fcb152723226ef Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Mon, 21 Apr 2014 14:17:44 -0700 Subject: Move response validation out of main code. --- module/test.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'module/test.rb') diff --git a/module/test.rb b/module/test.rb index cfc929b..69bb888 100644 --- a/module/test.rb +++ b/module/test.rb @@ -11,21 +11,21 @@ module Dinobot end def echo(m, args) - m.response << [:say, m.channel, args] + m.respond [:say, m.channel, args] end def ping(m, args) - m.response << [:say, m.channel, 'pong'] + m.respond [:say, m.channel, 'pong'] end def x3(m, args) 3.times do - m.response << [:say, m.channel, args] + m.respond [:say, m.channel, args] end end def fooify(m, args) - m.response << [:say, m.channel, "foo#{args}"] + m.respond [:say, m.channel, "foo#{args}"] end def error(m, args) @@ -37,7 +37,7 @@ module Dinobot end def invalidresponse(m, args) - m.response << [:say, m.channel] + m.respond [:say, m.channel] end end end -- cgit v1.2.3-70-g09d2