-
Notifications
You must be signed in to change notification settings - Fork 4
/
datadog-ci.gemspec
52 lines (42 loc) · 1.59 KB
/
datadog-ci.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
require_relative "lib/datadog/ci/version"
Gem::Specification.new do |spec|
spec.name = "datadog-ci"
spec.version = Datadog::CI::VERSION::STRING
spec.required_ruby_version = [
">= #{Datadog::CI::VERSION::MINIMUM_RUBY_VERSION}",
"< #{Datadog::CI::VERSION::MAXIMUM_RUBY_VERSION}"
]
spec.required_rubygems_version = ">= 2.0.0"
spec.authors = ["Datadog, Inc."]
spec.email = ["dev@datadoghq.com"]
spec.summary = "Datadog CI visibility for your ruby application"
spec.description = <<-DESC
datadog-ci is a Datadog's CI visibility library for Ruby. It traces
tests as they are being executed and brings developers visibility into
their CI pipelines.
DESC
spec.homepage = "https://github.com/DataDog/datadog-ci-rb"
spec.license = "BSD-3-Clause"
spec.bindir = "exe"
spec.executables = ["ddcirb"]
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["changelog_uri"] = "https://github.com/DataDog/datadog-ci-rb/blob/main/CHANGELOG.md"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/DataDog/datadog-ci-rb"
spec.files =
Dir[*%w[
CHANGELOG.md
LICENSE*
NOTICE
README.md
ext/**/*
lib/**/*
exe/**/*
]].select { |fn| File.file?(fn) } # We don't want directories, only files
.reject { |fn| fn.end_with?(".so", ".bundle") } # Exclude local native binary artifacts
spec.require_paths = ["lib"]
spec.add_dependency "datadog", "~> 2.4"
spec.add_dependency "msgpack"
spec.extensions = ["ext/datadog_cov/extconf.rb"]
end