# File lib/plugins/irc_gw.rb, line 52
  def on_message(m)
    termtter_command = m.command.downcase + ' ' + m.params.join(' ')
    unless Termtter::Client.find_commands(termtter_command).empty?
      post '#termtter', NOTICE, main_channel, '> ' + termtter_command
      Termtter::Client.call_commands(termtter_command)
    end
  end