Created
September 12, 2012 22:22
-
-
Save coderberry/3710402 to your computer and use it in GitHub Desktop.
irb-5
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
| >> results.results.class | |
| => Array | |
| >> results.results.count | |
| => 15 | |
| >> results.results[0] | |
| => #<Twitter::Tweet:0x007f90aa97d2d0 ... :to_user_name=>nil}> | |
| >> tweet = results.results[0] | |
| => #<Twitter::Tweet:0x007f90aa97d2d0 ... :to_user_name=>nil}> | |
| >> tweet.text | |
| => "#WTF where is the #NFC ship ? #iPhone #iPhone5 #Apple" | |
| >> tweet.from_user | |
| => "bilhackmac" | |
| >> tweet.profile_image_url | |
| => "http://a0.twimg.com/profile_images/1744030976/image_normal.jpg" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment