Skip to content

Instantly share code, notes, and snippets.

@llkats
Created August 20, 2014 16:16
Show Gist options
  • Save llkats/59eb1d21938a390925c5 to your computer and use it in GitHub Desktop.
Save llkats/59eb1d21938a390925c5 to your computer and use it in GitHub Desktop.
only reply to listed bots
BOTS = ['imakewebthings', 'jensechu__', 'spladow_ebooks', '__skalnik', '__briantford', 'daveleeeeee', 'leadfriedman', 'jpnutsbach']
bot.on_mention do |tweet, meta|
# Avoid infinite reply chains (very small chance of crosstalk)
next if BOTS.include?(tweet[:user][:screen_name]) && rand > 0.2
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment