twail 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +2 -2
- data/lib/twail.rb +4 -0
- data/twail.gemspec +3 -3
- metadata +3 -3
data/README.markdown
CHANGED
@@ -101,8 +101,8 @@ You can run a Twitter search with `twail s [search args]`.
|
|
101
101
|
Search arguments are simply the words you want to submit as your Twitter search
|
102
102
|
query.
|
103
103
|
|
104
|
-
`twail` will print each of search results as it fetches them and keep
|
105
|
-
backward in time until the results are exhausted.
|
104
|
+
`twail` will print each page of search results as it fetches them and keep
|
105
|
+
going backward in time until the results are exhausted.
|
106
106
|
|
107
107
|
The output of `twail` in search mode looks like this:
|
108
108
|
|
data/lib/twail.rb
CHANGED
@@ -21,6 +21,8 @@ for instructions.
|
|
21
21
|
Assuming you've done that, read on.
|
22
22
|
|
23
23
|
Usage: twail [timeline]
|
24
|
+
|
25
|
+
twail s [search args]
|
24
26
|
|
25
27
|
[timeline] can be any of these:
|
26
28
|
|
@@ -39,6 +41,8 @@ You can use these abbreviations:
|
|
39
41
|
|
40
42
|
p h f u m by to of
|
41
43
|
|
44
|
+
twail will performs a Twitter search if you use `twail s [search args]`
|
45
|
+
|
42
46
|
For more help, see the README at
|
43
47
|
|
44
48
|
https://github.com/danchoi/twail
|
data/twail.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
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.5'
|
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
11
|
s.homepage = "https://github.com/danchoi/twail"
|
12
|
-
s.summary = %q{tail your Twitter
|
13
|
-
s.description = %q{tail your Twitter
|
12
|
+
s.summary = %q{tail your Twitter timelines, or search Twitter}
|
13
|
+
s.description = %q{tail your Twitter timelines, or search Twitter}
|
14
14
|
|
15
15
|
s.rubyforge_project = "twail"
|
16
16
|
|
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.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Daniel Choi
|
@@ -24,7 +24,7 @@ dependencies:
|
|
24
24
|
version: 0.6.3
|
25
25
|
type: :runtime
|
26
26
|
version_requirements: *id001
|
27
|
-
description: tail your Twitter
|
27
|
+
description: tail your Twitter timelines, or search Twitter
|
28
28
|
email:
|
29
29
|
- dhchoi@gmail.com
|
30
30
|
executables:
|
@@ -71,6 +71,6 @@ rubyforge_project: twail
|
|
71
71
|
rubygems_version: 1.6.1
|
72
72
|
signing_key:
|
73
73
|
specification_version: 3
|
74
|
-
summary: tail your Twitter
|
74
|
+
summary: tail your Twitter timelines, or search Twitter
|
75
75
|
test_files: []
|
76
76
|
|