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.
- data/History.txt +3 -0
- data/Rakefile +2 -2
- data/lib/twitterstream.rb +1 -1
- metadata +22 -6
data/History.txt
CHANGED
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
|
|
17
|
-
self.extra_deps
|
|
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
|
|
data/lib/twitterstream.rb
CHANGED
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:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
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-
|
|
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:
|
|
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: *
|
|
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
|