forked from quasor/statsd
-
Notifications
You must be signed in to change notification settings - Fork 4
/
statsd-server.gemspec
30 lines (25 loc) · 1.22 KB
/
statsd-server.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'statsd_server/version'
Gem::Specification.new do |s|
s.name = "statsd-server"
s.version = StatsdServer::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Noah Lorang']
s.email = ['noah@datarobots.com']
s.homepage = "http://github.com/noahhl/statsd-server"
s.summary = "Ruby version of statsd that stores data in redis and on disk"
s.description = "A network daemon for aggregating statistics (counters and timers), rolling them up, then sending them to redis and a simple disk store. Inspired by http://github.com/quasor/statsd by Andrew Coldham and Ben VandenBos"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "eventmachine", ">= 1.0.0.beta.4"
s.add_dependency "erubis", ">= 2.6.6"
s.add_dependency "em-redis", "~> 0.3.0"
s.add_dependency "redis"
s.add_development_dependency "timecop"
s.add_development_dependency "rake"
s.add_development_dependency "mocha"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end