template/project/bot.tt in boty-0.0.6 vs template/project/bot.tt in boty-0.0.7
- old
+ new
@@ -1,11 +1,9 @@
#!/usr/bin/env ruby
require "./<%= bot_name %>"
session = Boty::Session.new
-session.verbose = true
session.start do |bot|
- bot.verbose = true
bot.message(/<%= bot_name %>/i) do |message|
next if message.from? self
say "Ohay <@#{message.user}>! I'm here, that's for sure."
end
end