skeleton/bots.rb in twitter_ebooks-3.0.4 vs skeleton/bots.rb in twitter_ebooks-3.0.5
- old
+ new
@@ -37,15 +37,15 @@
# follow(user.screen_name)
end
def on_mention(tweet)
# Reply to a mention
- # reply(tweet, meta(tweet).reply_prefix + "oh hullo")
+ # reply(tweet, "oh hullo")
end
def on_timeline(tweet)
# Reply to a tweet in the bot's timeline
- # reply(tweet, meta(tweet).reply_prefix + "nice tweet")
+ # reply(tweet, "nice tweet")
end
end
# Make a MyBot and attach it to an account
MyBot.new("{{BOT_NAME}}") do |bot|