-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstatsd.gemspec
More file actions
29 lines (24 loc) · 799 Bytes
/
statsd.gemspec
File metadata and controls
29 lines (24 loc) · 799 Bytes
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
Gem::Specification.new do |spec|
files = []
dirs = %w(lib)
dirs.each do |dir|
files += Dir["#{dir}/**/*"]
end
spec.name = "statsdserver"
spec.version = "0.12"
spec.summary = "statsd (server) -- stat collector/aggregator"
spec.description = "collect and aggregate stats, flush to graphite"
spec.license = "Apache License 2.0"
spec.add_dependency("bundler")
spec.add_runtime_dependency("daemons")
spec.add_runtime_dependency("eventmachine")
spec.add_runtime_dependency("parseconfig")
spec.add_runtime_dependency("sysexits")
spec.files = files
spec.require_paths << "lib"
spec.bindir = "bin"
spec.executables << "statsd"
spec.author = "Pete Fritchman"
spec.email = "petef@databits.net"
spec.homepage = "https://github.com/fetep/ruby-statsdserver"
end