bin/bot in boty-0.0.6 vs bin/bot in boty-0.0.7
- old
+ new
@@ -1,11 +1,9 @@
#!/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