twitter-stream 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of twitter-stream might be problematic. Click here for more details.
- data/Rakefile +2 -0
- data/VERSION +1 -1
- data/twitter-stream.gemspec +6 -3
- metadata +14 -5
data/Rakefile
CHANGED
@@ -17,6 +17,8 @@ begin
|
|
17
17
|
gemspec.email = "voloko@gmail.com"
|
18
18
|
gemspec.homepage = "http://github.com/voloko/twitter-stream"
|
19
19
|
gemspec.authors = ["Vladimir Kolesnikov"]
|
20
|
+
gemspec.add_dependency("eventmachine", [">= 0.12.8"])
|
21
|
+
gemspec.add_development_dependency("rspec", [">= 1.2.8"])
|
20
22
|
end
|
21
23
|
rescue LoadError
|
22
24
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
data/twitter-stream.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{twitter-stream}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.3"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Vladimir Kolesnikov"]
|
9
|
-
s.date = %q{2009-10-
|
9
|
+
s.date = %q{2009-10-14}
|
10
10
|
s.description = %q{Simple Ruby client library for twitter streaming API. Uses EventMachine for connection handling. Adheres to twitter's reconnection guidline. JSON format only.}
|
11
11
|
s.email = %q{voloko@gmail.com}
|
12
12
|
s.extra_rdoc_files = [
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.homepage = %q{http://github.com/voloko/twitter-stream}
|
28
28
|
s.rdoc_options = ["--charset=UTF-8"]
|
29
29
|
s.require_paths = ["lib"]
|
30
|
-
s.rubygems_version = %q{1.3.
|
30
|
+
s.rubygems_version = %q{1.3.5}
|
31
31
|
s.summary = %q{Twitter realtime API client}
|
32
32
|
s.test_files = [
|
33
33
|
"spec/spec_helper.rb",
|
@@ -40,8 +40,11 @@ Gem::Specification.new do |s|
|
|
40
40
|
s.specification_version = 3
|
41
41
|
|
42
42
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
43
|
+
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.8"])
|
43
44
|
else
|
45
|
+
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
|
44
46
|
end
|
45
47
|
else
|
48
|
+
s.add_dependency(%q<eventmachine>, [">= 0.12.8"])
|
46
49
|
end
|
47
50
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twitter-stream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladimir Kolesnikov
|
@@ -9,10 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-14 00:00:00 +04:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: eventmachine
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.12.8
|
24
|
+
version:
|
16
25
|
description: Simple Ruby client library for twitter streaming API. Uses EventMachine for connection handling. Adheres to twitter's reconnection guidline. JSON format only.
|
17
26
|
email: voloko@gmail.com
|
18
27
|
executables: []
|
@@ -56,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
65
|
requirements: []
|
57
66
|
|
58
67
|
rubyforge_project:
|
59
|
-
rubygems_version: 1.3.
|
68
|
+
rubygems_version: 1.3.5
|
60
69
|
signing_key:
|
61
70
|
specification_version: 3
|
62
71
|
summary: Twitter realtime API client
|