-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibdatadog.gemspec
More file actions
43 lines (36 loc) · 1.68 KB
/
Copy pathlibdatadog.gemspec
File metadata and controls
43 lines (36 loc) · 1.68 KB
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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "libdatadog/version"
Gem::Specification.new do |spec|
spec.name = "libdatadog"
spec.version = Libdatadog::VERSION
spec.authors = ["Datadog, Inc."]
spec.email = ["dev@datadoghq.com"]
spec.summary = "Library of common code used by Datadog Continuous Profiler for Ruby"
spec.description =
"libdatadog is a Rust-based utility library for Datadog's ddtrace gem."
spec.homepage = "https://docs.datadoghq.com/tracing/"
spec.license = "Apache-2.0"
spec.required_ruby_version = ">= 2.5.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/datadog/libdatadog-rb"
# Require releases on rubygems.org to be coming from multi-factor-auth-authenticated accounts
spec.metadata["rubygems_mfa_required"] = "true"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`
.split("\x0")
.reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features|publish)/|\.(?:git|travis|circleci)|appveyor)})
end
.reject do |f|
[".rspec", ".standard.yml", "Rakefile", "docker-compose.yml", "Gemfile", "README.md", "CONTRIBUTING.md", "LICENSE-3rdparty.yml"].include?(f)
end
.reject { |f| f.end_with?(".tar.gz") }
.reject { |f| f.end_with?(".nix") || f.start_with?("flake.") }
end
spec.require_paths = ["lib"]
end