twail 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +53 -8
- data/lib/twail.rb +4 -0
- data/twail.gemspec +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -1,20 +1,65 @@
|
|
1
1
|
# twail
|
2
2
|
|
3
|
-
`twail` is inspired by the venerable Unix `tail` program. `twail`
|
4
|
-
your Twitter timelines.
|
3
|
+
`twail` is inspired by the venerable Unix `tail` program. `twail` lets
|
4
|
+
you tail your Twitter timelines.
|
5
|
+
|
6
|
+
# Installation
|
7
|
+
|
8
|
+
gem install twail
|
9
|
+
|
10
|
+
# Setup
|
5
11
|
|
6
12
|
Before using twail, you must first get a Twitter API key and authorize the twurl
|
7
13
|
command to access your Twitter account. Type
|
8
14
|
|
9
|
-
|
15
|
+
twurl -T
|
10
16
|
|
11
17
|
for instructions.
|
12
18
|
|
13
|
-
Assuming you've done that, read on.
|
14
|
-
|
15
|
-
Usage: twail [timeline]
|
16
19
|
|
17
|
-
|
20
|
+
# Usage
|
21
|
+
|
22
|
+
twail [timeline]
|
23
|
+
|
24
|
+
The output looks like this:
|
25
|
+
|
26
|
+
$ twail home
|
27
|
+
Logging home timeline at 2011-04-21 11:21:36 -0400
|
28
|
+
timoreilly| RT @gumption Americans wildly underestimate income disparity, prefer far greater
|
29
|
+
| equitability @DanAriely http://bit.ly/gE9v3n
|
30
|
+
bcardarella| Amazon is now the single point of failure for the Internet
|
31
|
+
RWW| Visa Launches Real-Time, Location-Based Discounts for Gap Customers
|
32
|
+
| http://rww.to/eK5q8U
|
33
|
+
timoreilly| Oops. Seems to be my morning for botching link shortening. Here's the @oreillymedia
|
34
|
+
| deal of the day link again http://oreil.ly/dHLKR6
|
35
|
+
HNTweets| Hipmunk wants you (to run our Android development): http://bit.ly/h095Yz Comments:
|
36
|
+
| http://bit.ly/fLOAdO
|
37
|
+
HNTweets| CSS3 vs. CSS: A Speed Benchmark: http://bit.ly/gOOxvZ Comments: http://bit.ly/hxbRRi
|
38
|
+
BostInnovation| MIT Needs Help Finding Dates, According To DateMySchool.com http://bit.ly/gIkO4K
|
39
|
+
fixcongress| RT @AlliGerkman WH may require companies bidding for govt contracts to publicly
|
40
|
+
| disclose cmpgn donations http://bit.ly/e2pRdA #rootstrikers
|
41
|
+
sof_ruby| Ruby / Rails: How to identify if the given day, month, and year, combine a legal
|
42
|
+
| date ?: Given 3 numbers: DD, MM... http://bit.ly/g54YYs
|
43
|
+
jpaynerss| A new photo browsing experience in Google Earth http://goo.gl/fb/miiVE
|
44
|
+
jpaynerss| More about Google Earth Builder http://goo.gl/fb/VQN2H
|
45
|
+
HNTweets| My National Security Letter Gag Order: http://wapo.st/ep0Sh4 Comments:
|
46
|
+
| http://bit.ly/eVa9Uv
|
47
|
+
jonpierce| Moving #StartupDrinks to CBC to accommodate a larger crowd tomorrow. As @evanish
|
48
|
+
| says, let's think big! See you there? http://t.co/s2Wlwrf
|
49
|
+
elwoodicious| RT @Jwarchol: Sometimes you forget how many different sites you have on EC2. This is
|
50
|
+
| not one of those times.
|
51
|
+
rossnelson| RT @neonarcade: Poke is looking for a PHP/MySQL dev for a short term project in NYC.
|
52
|
+
| Please RT!
|
53
|
+
elwoodicious| RT @ShlomoSwidler: RT @Beaker: deploying instances in 2 availability zones costs
|
54
|
+
| TWICE as much as doing so in 1, so to minimize cost (vs ...
|
55
|
+
nickgrossman| RT @Socrative: Socrative won 1st place at the Harvard Grad School of Education
|
56
|
+
| Bridge Competition. Thanks to organizers and Gates Founda ...
|
57
|
+
HNTweets| Incredible Working Factory Made With Lego Robots: http://bit.ly/g5Fzax Comments:
|
58
|
+
| http://bit.ly/glzdVa
|
59
|
+
HNTweets| AWS Outage Reminds Me Of This: 8 Fallacies of Dist. Computing: http://bit.ly/giUX6M
|
60
|
+
| Comments: http://bit.ly/dIomon
|
61
|
+
|
62
|
+
`[timeline]` can be any of the following:
|
18
63
|
|
19
64
|
public
|
20
65
|
home
|
@@ -25,7 +70,7 @@ Usage: twail [timeline]
|
|
25
70
|
retweeted_to_me
|
26
71
|
retweets_of_me
|
27
72
|
|
28
|
-
|
73
|
+
The `home` timeline is the default.
|
29
74
|
|
30
75
|
You can use these abbreviations:
|
31
76
|
|
data/lib/twail.rb
CHANGED
data/twail.gemspec
CHANGED