twail 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +5 -3
- data/notes.txt +2 -1
- data/twail.gemspec +2 -2
- metadata +2 -2
data/README.markdown
CHANGED
@@ -9,8 +9,9 @@ you tail your Twitter timelines.
|
|
9
9
|
|
10
10
|
# Setup
|
11
11
|
|
12
|
-
Before using twail, you must first get a Twitter API key and authorize
|
13
|
-
command
|
12
|
+
Before using twail, you must first get a Twitter API key and authorize
|
13
|
+
the `twurl` command (note that this is a different command from `twail`)
|
14
|
+
to access your Twitter account. Type
|
14
15
|
|
15
16
|
twurl -T
|
16
17
|
|
@@ -83,7 +84,8 @@ want. One pipeline I like to use is
|
|
83
84
|
|
84
85
|
twail home | tee -a twitter.home.log
|
85
86
|
|
86
|
-
Lots of other pipelines are possible. Knock yourself out.
|
87
|
+
Lots of other pipelines are possible. Knock yourself out. To stop
|
88
|
+
`twail`, press `CTRL-C`.
|
87
89
|
|
88
90
|
`twail` was created by Daniel Choi. It's really just a convenience
|
89
91
|
wrapper around the awesome [twurl][twurl] program.
|
data/notes.txt
CHANGED
data/twail.gemspec
CHANGED
@@ -2,13 +2,13 @@
|
|
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.
|
5
|
+
s.version = '0.0.3'
|
6
6
|
s.platform = Gem::Platform::RUBY
|
7
7
|
s.required_ruby_version = '>= 1.9.0'
|
8
8
|
|
9
9
|
s.authors = ["Daniel Choi"]
|
10
10
|
s.email = ["dhchoi@gmail.com"]
|
11
|
-
s.homepage = "
|
11
|
+
s.homepage = "https://github.com/danchoi/twail"
|
12
12
|
s.summary = %q{tail your Twitter timeslines}
|
13
13
|
s.description = %q{tail your Twitter timeslines}
|
14
14
|
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: twail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.3
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Daniel Choi
|
@@ -42,7 +42,7 @@ files:
|
|
42
42
|
- notes.txt
|
43
43
|
- twail.gemspec
|
44
44
|
has_rdoc: true
|
45
|
-
homepage:
|
45
|
+
homepage: https://github.com/danchoi/twail
|
46
46
|
licenses: []
|
47
47
|
|
48
48
|
post_install_message:
|