forked from vesakki/ruby-statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatsd-ruby.gemspec
More file actions
25 lines (18 loc) · 767 Bytes
/
Copy pathstatsd-ruby.gemspec
File metadata and controls
25 lines (18 loc) · 767 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
# -*- encoding: utf-8 -*-
Gem::Specification.new("statsd-ruby", "1.0.0") do |s|
s.authors = ["Rein Henrichs"]
s.email = "rein@phpfog.com"
s.summary = "A Ruby StatsD client"
s.description = "A Ruby StatsD client (https://github.com/etsy/statsd)"
s.homepage = "https://github.com/reinh/statsd"
s.licenses = %w[MIT]
s.extra_rdoc_files = %w[LICENSE.txt README.rdoc]
if $0 =~ /gem/ # If running under rubygems (building), otherwise, just leave
s.files = `git ls-files`.split($\)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
end
s.add_development_dependency "minitest", ">= 3.2.0"
s.add_development_dependency "yard"
s.add_development_dependency "simplecov", ">= 0.6.4"
s.add_development_dependency "rake"
end