Skip to content

Instantly share code, notes, and snippets.

@siyo
Created January 14, 2012 15:28
Show Gist options
  • Save siyo/1611788 to your computer and use it in GitHub Desktop.
Save siyo/1611788 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# auto say yo!
Earthquake.init do
output_filter do |item|
next if item.nil? || item["text"].nil? || !(/^\s*yo\s+yo\s*/i =~ item["text"])
twitter.update "yo" + " " * rand(20)
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment