Skip to content

Instantly share code, notes, and snippets.

@siyo
Created January 28, 2012 17:31
Show Gist options
  • Save siyo/1695170 to your computer and use it in GitHub Desktop.
Save siyo/1695170 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# auto favorite
Earthquake.init do
output_filter do |item|
next if item.nil? || item["text"].nil?
twitter.favorite item["id"] if /(^|[^a-zA-Z0-9_])#{twitter.info["screen_name"]}[^a-zA-Z0-9_]/ =~ item["text"]
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment