diff --git a/History.txt b/History.txt index 0063878..3d1a976 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== 1.0.1 2009-05-06 + +* add explicit missing "require 'net/http'" + == 1.0.0 2009-05-06 * 1 major enhancement: diff --git a/lib/tweet-tail.rb b/lib/tweet-tail.rb index dad72e4..4a7b8fe 100644 --- a/lib/tweet-tail.rb +++ b/lib/tweet-tail.rb @@ -2,7 +2,7 @@ $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__))) module TweetTail - VERSION = '1.0.0' + VERSION = '1.0.1' end gem 'json' diff --git a/lib/tweet-tail/tweet_poller.rb b/lib/tweet-tail/tweet_poller.rb index d026cf5..1be3057 100644 --- a/lib/tweet-tail/tweet_poller.rb +++ b/lib/tweet-tail/tweet_poller.rb @@ -1,3 +1,5 @@ +require 'net/http' + class TweetTail::TweetPoller attr_accessor :query, :latest_results, :refresh_url