-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatadog.gemspec
More file actions
30 lines (27 loc) · 876 Bytes
/
catadog.gemspec
File metadata and controls
30 lines (27 loc) · 876 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
30
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "catadog"
s.version = "0.1.0"
s.licenses = ["BSD-3-Clause", "Apache-2.0"]
s.summary = "Datadog wire introspection tool"
s.description = "Intercept and analyse Datadog communication"
s.authors = ["Datadog, Inc."]
s.email = "dev@datadoghq.com"
s.files = [
"bin/catadog"
] + Dir.glob("lib/**/*.rb") + Dir.glob("mocks/**/*.rb")
s.bindir = "bin"
s.executables = "catadog"
s.homepage = "https://github.com/DataDog/catadog"
s.metadata = {
"rubygems_mfa_required" => "true",
"allowed_push_host" => "https://rubygems.org",
"source_code_uri" => s.homepage
}
s.required_ruby_version = ">= 3.0"
s.add_dependency "webrick", "~> 1.8.0"
s.add_dependency "rack", "~> 2.2"
s.add_dependency "sinatra", "~> 3.0"
s.add_dependency "json"
s.add_dependency "msgpack"
end