twitterstream 0.2.0 → 0.2.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.
Files changed (4) hide show
  1. data/History.txt +3 -0
  2. data/Rakefile +2 -2
  3. data/lib/twitterstream.rb +1 -1
  4. metadata +22 -6
@@ -1,3 +1,6 @@
1
+ === 0.2.1 2011-03-05
2
+ * Fixed add depend gem 'oauth'
3
+
1
4
  === 0.2.0 2011-01-08
2
5
  * Support Production UserStreams
3
6
 
data/Rakefile CHANGED
@@ -13,8 +13,8 @@ Hoe.plugin :newgem
13
13
  $hoe = Hoe.spec 'twitterstream' do
14
14
  self.developer 'yayugu', 'yayugu@gmail.com'
15
15
 
16
- self.rubyforge_name = "twitterstream" # TODO this is default value
17
- self.extra_deps = [['json','>= 1.2.0']]
16
+ self.rubyforge_name = "twitterstream" # TODO this is default value
17
+ self.extra_deps = [['json','>= 1.2.0'], ['oauth', '>=0.4.1']]
18
18
 
19
19
  end
20
20
 
@@ -20,7 +20,7 @@ module Net
20
20
  end
21
21
 
22
22
  class TwitterStream
23
- VERSION = '0.2.0'
23
+ VERSION = '0.2.1'
24
24
  @@urls = {
25
25
  'sample' => URI.parse("http://stream.twitter.com/1/statuses/sample.json"),
26
26
  'filter' => URI.parse("http://stream.twitter.com/1/statuses/filter.json"),
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitterstream
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - yayugu
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-08 00:00:00 +09:00
18
+ date: 2011-03-05 00:00:00 +09:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -35,9 +35,25 @@ dependencies:
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
37
  - !ruby/object:Gem::Dependency
38
- name: hoe
38
+ name: oauth
39
39
  prerelease: false
40
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 13
46
+ segments:
47
+ - 0
48
+ - 4
49
+ - 1
50
+ version: 0.4.1
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: hoe
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
41
57
  none: false
42
58
  requirements:
43
59
  - - ">="
@@ -49,7 +65,7 @@ dependencies:
49
65
  - 0
50
66
  version: 2.8.0
51
67
  type: :development
52
- version_requirements: *id002
68
+ version_requirements: *id003
53
69
  description: It is the simple library to access the Twitter Streaming API( http://apiwiki.twitter.com/Streaming-API-Documentation ). It works with pure-ruby(don't need C compiler) and rubygems.
54
70
  email:
55
71
  - yayugu@gmail.com