-
Notifications
You must be signed in to change notification settings - Fork 137
/
dogstatsd-ruby.gemspec
36 lines (28 loc) · 1.16 KB
/
dogstatsd-ruby.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
30
31
32
33
34
35
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "datadog/statsd"
Gem::Specification.new do |s|
s.name = "dogstatsd-ruby"
s.version = Datadog::Statsd::VERSION
s.authors = ["Rein Henrichs", "Karim Bogtob"]
s.summary = "A Ruby DogStatsd client"
s.description = "A Ruby DogStatsd client"
s.email = "[email protected]"
s.post_install_message = %q{
If you are upgrading from v4.x of the dogstatsd-ruby library, note the major change to the threading model:
https://github.com/DataDog/dogstatsd-ruby#migrating-from-v4x-to-v5x
}
s.metadata = {
"bug_tracker_uri" => "https://github.com/DataDog/dogstatsd-ruby/issues",
"changelog_uri" => "https://github.com/DataDog/dogstatsd-ruby/blob/v#{s.version}/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/dogstatsd-ruby/#{s.version}",
"source_code_uri" => "https://github.com/DataDog/dogstatsd-ruby/tree/v#{s.version}"
}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = Dir["LICENSE.txt", "README.md", "lib/**/*.rb",]
s.homepage = "https://github.com/DataDog/dogstatsd-ruby"
s.licenses = ["MIT"]
s.required_ruby_version = '>= 2.1.0'
end