# A plugin that tells robut to repeat whatever he's told. class Robut::Plugin::Echo include Robut::Plugin desc "echo - replies to the channel with " match /^echo (.*)/, :sent_to_me => true do |phrase| reply(phrase) unless phrase.empty? end end