forked from tweetstream/tweetstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweetstream.gemspec
30 lines (25 loc) · 1.19 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
29
30
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/tweetstream/version', __FILE__)
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 = %q{TweetStream is a simple wrapper for consuming the Twitter Streaming API.}
spec.summary = spec.description
spec.homepage = 'http://github.com/intridea/tweetstream'
spec.licenses = ['MIT']
spec.add_dependency 'daemons', '~> 1.1'
spec.add_dependency 'em-twitter', '~> 0.2'
spec.add_dependency 'em-http-request', '~> 1.0.2'
spec.add_dependency 'twitter', '~> 4.0'
spec.add_dependency 'yajl-ruby', '~> 1.1'
spec.add_development_dependency 'guard-rspec'
spec.add_development_dependency 'kramdown'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'simplecov'
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.require_paths = ["lib"]
end