twitterstream 0.1.0 → 0.1.1

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.
@@ -1,3 +1,7 @@
1
+ === 0.1.1 2010-01-01
2
+ * Fixed require 'twitter_stream' => 'twitterstream'
3
+ * Fixed couldn't get deletion/limitation notice
4
+
1
5
  === 0.1.0 2010-01-01
2
6
 
3
7
  * Fixed some from Sora Harakami
@@ -3,9 +3,9 @@ Manifest.txt
3
3
  README.rdoc
4
4
  README.mkd
5
5
  Rakefile
6
- lib/twitter_stream.rb
6
+ lib/twitterstream.rb
7
7
  script/console
8
8
  script/destroy
9
9
  script/generate
10
10
  test/test_helper.rb
11
- test/test_twitter_stream.rb
11
+ test/test_twitterstream.rb
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  gem 'hoe', '>= 2.1.0'
3
3
  require 'hoe'
4
4
  require 'fileutils'
5
- require './lib/twitter_stream'
5
+ require './lib/twitterstream'
6
6
 
7
7
  Hoe.plugin :newgem
8
8
  # Hoe.plugin :website
@@ -19,7 +19,7 @@ module Net
19
19
  end
20
20
 
21
21
  class TwitterStream
22
- VERSION = '0.1.0'
22
+ VERSION = '0.1.1'
23
23
  @@urls = {
24
24
  'sample' => URI.parse("http://stream.twitter.com/1/statuses/sample.json"),
25
25
  'filter' => URI.parse("http://stream.twitter.com/1/statuses/filter.json")
@@ -96,7 +96,6 @@ class TwitterStream
96
96
  http.request(request) do |response|
97
97
  response.each_line("\r\n") do |line|
98
98
  j = JSON.parse(line) rescue next
99
- next unless j["text"]
100
99
  yield j
101
100
  end
102
101
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitterstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yayugu
@@ -48,12 +48,12 @@ files:
48
48
  - README.rdoc
49
49
  - README.mkd
50
50
  - Rakefile
51
- - lib/twitter_stream.rb
51
+ - lib/twitterstream.rb
52
52
  - script/console
53
53
  - script/destroy
54
54
  - script/generate
55
55
  - test/test_helper.rb
56
- - test/test_twitter_stream.rb
56
+ - test/test_twitterstream.rb
57
57
  has_rdoc: true
58
58
  homepage:
59
59
  licenses: []
@@ -84,5 +84,5 @@ signing_key:
84
84
  specification_version: 3
85
85
  summary: It is the simple library to access the Twitter Streaming API( http://apiwiki.twitter.com/Streaming-API-Documentation )
86
86
  test_files:
87
- - test/test_twitter_stream.rb
87
+ - test/test_twitterstream.rb
88
88
  - test/test_helper.rb