Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Created March 28, 2011 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJFaraday/890249 to your computer and use it in GitHub Desktop.
Save AJFaraday/890249 to your computer and use it in GitHub Desktop.
Bieber wedding proposals
require 'rubygems'
require 'twitter'
search = Twitter::Search.new
i = 0
search.containing("marry me").to("justinbieber").each do |r|
puts "#{r.from_user}: #{r.text}"
i += 1
end
puts i
search.clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment