twail 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.markdown +53 -8
  2. data/lib/twail.rb +4 -0
  3. data/twail.gemspec +1 -1
  4. 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` tails
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
- twurl -T
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
- [timeline] can be any of these:
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
- "home" is the default.
73
+ The `home` timeline is the default.
29
74
 
30
75
  You can use these abbreviations:
31
76
 
data/lib/twail.rb CHANGED
@@ -38,6 +38,10 @@ You can use these abbreviations:
38
38
 
39
39
  p h f u m by to of
40
40
 
41
+ For more help, see the README at
42
+
43
+ https://github.com/danchoi/twail
44
+
41
45
  END
42
46
  exit
43
47
  end
data/twail.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "twail"
5
- s.version = '0.0.1'
5
+ s.version = '0.0.2'
6
6
  s.platform = Gem::Platform::RUBY
7
7
  s.required_ruby_version = '>= 1.9.0'
8
8
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: twail
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi