This repository was archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhot_potato.gemspec
More file actions
28 lines (24 loc) · 1.39 KB
/
hot_potato.gemspec
File metadata and controls
28 lines (24 loc) · 1.39 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hot_potato/version"
Gem::Specification.new do |s|
s.name = "hot_potato"
s.version = HotPotato::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Darian Shimy"]
s.email = ["dshimy@gmail.com"]
s.homepage = "http://github.com/dshimy/hotpotato"
s.summary = %q{A Real-time Processing Framework}
s.description = %q{Hot Potato is an open source real-time processing framework written in Ruby. Originally designed to process the Twitter firehose at 3,000+ tweets per second, it has been extended to support any type of streaming data as input or output to the framework. The framework excels with applications such as, social media analysis, log processing, fraud prevention, spam detection, instant messaging, and many others that include the processing of streaming data.}
s.add_dependency 'json', "~> 1.5.3"
s.add_dependency 'redis', "~> 2.2.1"
s.add_dependency 'bunny', "~> 0.6.0"
s.add_dependency 'sinatra', "~> 1.2.6"
s.add_dependency "vegas", "~> 0.1.8"
s.add_dependency "snappy", "~> 0.0.2"
s.rubyforge_project = "hot_potato"
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