tweettail 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,9 @@
1
+ == 1.1.0 2009-05-06
2
+
3
+ * only 1 executable: tweettail
4
+ * removed aliased executables: tweet-tail and tweet_tail
5
+ * add explicit missing "require 'net/http'"
6
+
1
7
  == 1.0.0 2009-05-06
2
8
 
3
9
  * 1 major enhancement:
@@ -3,8 +3,6 @@ Manifest.txt
3
3
  PostInstall.txt
4
4
  README.rdoc
5
5
  Rakefile
6
- bin/tweet-tail
7
- bin/tweet_tail
8
6
  bin/tweettail
9
7
  features/cli.feature
10
8
  features/development.feature
@@ -1,12 +1,12 @@
1
1
  = tweet-tail
2
2
 
3
- * http://github.com/drnic/tweet-tail
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
- $ tweet-tail railsconf
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 `-f` option (as like `tail -f`)
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 tweet-tail
32
+ * sudo gem install tweettail
31
33
 
32
34
  == LICENSE:
33
35
 
@@ -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 "tweet-tail" with arguments "jaoo"
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 "tweet-tail" with arguments ""
35
+ When I run local executable "tweettail" with arguments ""
36
36
  Then I should see help option "-f"
37
37
 
38
38
 
@@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module TweetTail
5
- VERSION = '1.0.0'
5
+ VERSION = '1.1.0'
6
6
  end
7
7
 
8
8
  gem 'json'
@@ -1,3 +1,5 @@
1
+ require 'net/http'
2
+
1
3
  class TweetTail::TweetPoller
2
4
  attr_accessor :query, :latest_results, :refresh_url
3
5
 
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.0.0
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
- $ tweet-tail railsconf
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 `-f` option (as like `tail -f`)
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/tweet-tail
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: $ tweet-tail railsconf rubysolo: protip: it helps to actually READ the error message"
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
@@ -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)
@@ -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)