1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# -*- encoding: utf-8 -*-
Gem::Specification.new("statsd-ruby", "1.4.0") do |s|
s.authors = 'Rein Henrichs'
s.email = "reinh@reinh.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]
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
|