#!/usr/bin/env ruby require "./lib/boty" session = Boty::Session.new session.verbose = true session.start do |bot| bot.verbose = true bot.message(/are you there\?/i) do |message| next if message.from? self say "Ohay <@#{message.user}>! I'm here, that's for sure." end end