forked from thr3a/em-twitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
em-twitter.gemspec
30 lines (24 loc) · 1.03 KB
/
em-twitter.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'em-twitter/version'
Gem::Specification.new do |spec|
spec.name = 'em-twitter'
spec.version = EventMachine::Twitter::VERSION
spec.homepage = 'https://github.com/tweetstream/em-twitter'
spec.licenses = ['MIT']
spec.authors = ["Steve Agalloco"]
spec.email = ['[email protected]']
spec.description = %q{Twitter Streaming API client for EventMachine}
spec.summary = spec.description
spec.add_dependency 'eventmachine', '~> 1.0'
spec.add_dependency 'http_parser.rb', '~> 0.6'
spec.add_dependency 'simple_oauth', '~> 0.2'
spec.add_dependency 'buftok', '~> 0.2'
spec.add_dependency 'em-socksify', '~> 0.3'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.files = %w(.yardopts CONTRIBUTING.md LICENSE.md README.md Rakefile em-twitter.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("spec/**/*")
spec.require_paths = ['lib']
end