forked from voloko/twitter-stream
-
Notifications
You must be signed in to change notification settings - Fork 3
/
twitter-stream.gemspec
32 lines (25 loc) · 1.33 KB
/
twitter-stream.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{twitter-stream}
s.version = "0.1.15"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Vladimir Kolesnikov"]
s.date = %q{2012-04-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.}
s.summary = %q{Twitter realtime API client}
s.homepage = %q{http://github.com/voloko/twitter-stream}
s.email = %q{[email protected]}
s.platform = Gem::Platform::RUBY
s.rubygems_version = %q{1.3.6}
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version=
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = ["README.markdown", "LICENSE"]
s.add_runtime_dependency('eventmachine', ">= 0.12.8")
s.add_runtime_dependency('simple_oauth', '~> 0.1.4')
s.add_runtime_dependency('http_parser.rb', '~> 0.5.1')
s.add_development_dependency('rspec', "~> 2.5.0")
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end