tweettail 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +6 -0
- data/Manifest.txt +0 -2
- data/README.rdoc +6 -4
- data/features/cli.feature +2 -2
- data/lib/tweet-tail.rb +1 -1
- data/lib/tweet-tail/tweet_poller.rb +2 -0
- metadata +7 -9
- data/bin/tweet-tail +0 -10
- data/bin/tweet_tail +0 -10
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
= tweet-tail
|
2
2
|
|
3
|
-
* http://github.com/drnic/
|
3
|
+
* http://github.com/drnic/tweettail
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
7
|
Get the latest search results streaming to your console:
|
8
8
|
|
9
|
-
$
|
9
|
+
$ tweettail railsconf
|
10
10
|
rubysolo: protip: it helps to actually READ the error message. #railsconf
|
11
11
|
voxxit: So, everyone, how is #railsconf coming? When is the big 3.0 announcement?
|
12
12
|
JesseGoldberg: @GavinStark I don't have as much to chat about as you do while you are at RailsConf.
|
@@ -23,11 +23,13 @@ Get the latest search results streaming to your console:
|
|
23
23
|
jdar: @tullytully RT @dgou:for the benefit of people at #railsconf keynote, here is penelope trunk on tim ferris: http://bit.ly/b81E
|
24
24
|
yorzi: Reading: "Rails 3 and the Real Secret to High Productivity: RailsConf 2009 - May 04 - 07, 2009, Las Vegas,NV" ( http://tinyurl.com/czmkxn )
|
25
25
|
|
26
|
-
Or let it sit there all day with the
|
26
|
+
Or let it sit there all day with the -f option (like "tail -f"):
|
27
|
+
|
28
|
+
tweettail -f railsconf
|
27
29
|
|
28
30
|
== INSTALL:
|
29
31
|
|
30
|
-
* sudo gem install
|
32
|
+
* sudo gem install tweettail
|
31
33
|
|
32
34
|
== LICENSE:
|
33
35
|
|
data/features/cli.feature
CHANGED
@@ -5,7 +5,7 @@ Feature: Live twitter search results on command line
|
|
5
5
|
|
6
6
|
Scenario: Display some search results
|
7
7
|
Given twitter has some search results for "jaoo"
|
8
|
-
When I run local executable "
|
8
|
+
When I run local executable "tweettail" with arguments "jaoo"
|
9
9
|
Then I should see some twitter messages
|
10
10
|
|
11
11
|
Scenario: Display explicit search results
|
@@ -32,7 +32,7 @@ Feature: Live twitter search results on command line
|
|
32
32
|
"""
|
33
33
|
|
34
34
|
Scenario: Show help if no search query passed
|
35
|
-
When I run local executable "
|
35
|
+
When I run local executable "tweettail" with arguments ""
|
36
36
|
Then I should see help option "-f"
|
37
37
|
|
38
38
|
|
data/lib/tweet-tail.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tweettail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dr Nic
|
@@ -35,7 +35,7 @@ dependencies:
|
|
35
35
|
description: |-
|
36
36
|
Get the latest search results streaming to your console:
|
37
37
|
|
38
|
-
$
|
38
|
+
$ tweettail railsconf
|
39
39
|
rubysolo: protip: it helps to actually READ the error message. #railsconf
|
40
40
|
voxxit: So, everyone, how is #railsconf coming? When is the big 3.0 announcement?
|
41
41
|
JesseGoldberg: @GavinStark I don't have as much to chat about as you do while you are at RailsConf.
|
@@ -52,12 +52,12 @@ description: |-
|
|
52
52
|
jdar: @tullytully RT @dgou:for the benefit of people at #railsconf keynote, here is penelope trunk on tim ferris: http://bit.ly/b81E
|
53
53
|
yorzi: Reading: "Rails 3 and the Real Secret to High Productivity: RailsConf 2009 - May 04 - 07, 2009, Las Vegas,NV" ( http://tinyurl.com/czmkxn )
|
54
54
|
|
55
|
-
Or let it sit there all day with the
|
55
|
+
Or let it sit there all day with the -f option (like "tail -f"):
|
56
|
+
|
57
|
+
tweettail -f railsconf
|
56
58
|
email:
|
57
59
|
- drnicwilliams@gmail.com
|
58
60
|
executables:
|
59
|
-
- tweet-tail
|
60
|
-
- tweet_tail
|
61
61
|
- tweettail
|
62
62
|
extensions: []
|
63
63
|
|
@@ -72,8 +72,6 @@ files:
|
|
72
72
|
- PostInstall.txt
|
73
73
|
- README.rdoc
|
74
74
|
- Rakefile
|
75
|
-
- bin/tweet-tail
|
76
|
-
- bin/tweet_tail
|
77
75
|
- bin/tweettail
|
78
76
|
- features/cli.feature
|
79
77
|
- features/development.feature
|
@@ -100,7 +98,7 @@ files:
|
|
100
98
|
- test/test_tweet-tail_cli.rb
|
101
99
|
- test/test_tweet_poller.rb
|
102
100
|
has_rdoc: true
|
103
|
-
homepage: http://github.com/drnic/
|
101
|
+
homepage: http://github.com/drnic/tweettail
|
104
102
|
licenses: []
|
105
103
|
|
106
104
|
post_install_message:
|
@@ -127,7 +125,7 @@ rubyforge_project: drnicutilities
|
|
127
125
|
rubygems_version: 1.3.3
|
128
126
|
signing_key:
|
129
127
|
specification_version: 3
|
130
|
-
summary: "Get the latest search results streaming to your console: $
|
128
|
+
summary: "Get the latest search results streaming to your console: $ tweettail railsconf rubysolo: protip: it helps to actually READ the error message"
|
131
129
|
test_files:
|
132
130
|
- test/test_helper.rb
|
133
131
|
- test/test_tweet-tail_cli.rb
|
data/bin/tweet-tail
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# Created on 2009-5-1 by Dr Nic Williams
|
4
|
-
# Copyright (c) 2009. All rights reserved.
|
5
|
-
|
6
|
-
require 'rubygems'
|
7
|
-
require File.expand_path(File.dirname(__FILE__) + "/../lib/tweet-tail")
|
8
|
-
require "tweet-tail/cli"
|
9
|
-
|
10
|
-
TweetTail::CLI.execute(STDOUT, ARGV)
|
data/bin/tweet_tail
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# Created on 2009-5-1 by Dr Nic Williams
|
4
|
-
# Copyright (c) 2009. All rights reserved.
|
5
|
-
|
6
|
-
require 'rubygems'
|
7
|
-
require File.expand_path(File.dirname(__FILE__) + "/../lib/tweet-tail")
|
8
|
-
require "tweet-tail/cli"
|
9
|
-
|
10
|
-
TweetTail::CLI.execute(STDOUT, ARGV)
|