forked from tweetstream/tweetstream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtweetstream.gemspec
28 lines (23 loc) · 1.07 KB
/
tweetstream.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tweetstream/version'
Gem::Specification.new do |spec|
spec.name = 'tweetstream'
spec.version = TweetStream::VERSION
spec.authors = ['Michael Bleigh', 'Steve Agalloco']
spec.email = ['[email protected]', '[email protected]']
spec.description = 'TweetStream is a simple wrapper for consuming the Twitter Streaming API.'
spec.summary = spec.description
spec.homepage = 'https://github.com/tweetstream/tweetstream'
spec.licenses = ['MIT']
spec.add_dependency 'daemons', '~> 1.1'
spec.add_dependency 'em-http-request', '>= 1.1.1'
spec.add_dependency 'em-twitter', '~> 0.3'
spec.add_dependency 'twitter', '>= 5.12'
spec.add_dependency 'multi_json', '~> 1.3'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.files = %w(.yardopts CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md tweetstream.gemspec) + Dir['lib/**/*.rb']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 1.9.3'
end