forked from tweetstream/tweetstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweetstream.gemspec
35 lines (30 loc) · 1.41 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
31
32
33
34
35
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/tweetstream/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'tweetstream'
s.version = TweetStream::VERSION
s.authors = ['Michael Bleigh', 'Steve Agalloco']
s.email = ['[email protected]', '[email protected]']
s.description = %q{TweetStream allows you to easily consume the Twitter Streaming API utilizing the YAJL Ruby gem.}
s.summary = %q{TweetStream is a simple wrapper for consuming the Twitter Streaming API.}
s.homepage = 'http://github.com/intridea/tweetstream'
s.add_dependency 'em-twitter', '~> 0.1'
s.add_dependency 'twitter', '~> 3.2'
s.add_dependency 'daemons', '~> 1.1'
s.add_dependency 'multi_json', '~> 1.3'
s.add_dependency 'em-http-request', '~> 1.0.2'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'json'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.add_development_dependency 'rdiscount'
s.add_development_dependency 'rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'webmock'
s.add_development_dependency 'yajl-ruby'
s.add_development_dependency 'yard'
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