Created
May 18, 2009 07:25
-
-
Save sekimura/113359 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env T4R_ENV=development bin/t4rsh | |
>> @twitter.my(:followers).map{|u| u.screen_name if u.url && u.url.match('http://tinyurl.com')} - [nil].each {|sn| puts sn if sn} | |
=> ["nadiamodel", "gemlove", "rachelgome", "jackielovex"] | |
>> @twitter.my(:followers).map{|u| u.screen_name if u.url && u.url.match('http://tinyurl.com')} - [nil].each {|sn| @twitter.block(:add, sn) if sn} | |
=> ["nadiamodel", "gemlove", "rachelgome", "jackielovex"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment