datadog-ci 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +30 -0
- data/LICENSE +6 -0
- data/LICENSE-3rdparty.csv +2 -0
- data/LICENSE.Apache +200 -0
- data/LICENSE.BSD3 +24 -0
- data/NOTICE +4 -0
- data/README.md +125 -0
- data/lib/datadog/ci/configuration/components.rb +32 -0
- data/lib/datadog/ci/configuration/settings.rb +51 -0
- data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +36 -0
- data/lib/datadog/ci/contrib/cucumber/ext.rb +22 -0
- data/lib/datadog/ci/contrib/cucumber/formatter.rb +94 -0
- data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +28 -0
- data/lib/datadog/ci/contrib/cucumber/integration.rb +47 -0
- data/lib/datadog/ci/contrib/cucumber/patcher.rb +27 -0
- data/lib/datadog/ci/contrib/minitest/configuration/settings.rb +36 -0
- data/lib/datadog/ci/contrib/minitest/ext.rb +21 -0
- data/lib/datadog/ci/contrib/minitest/hooks.rb +66 -0
- data/lib/datadog/ci/contrib/minitest/integration.rb +46 -0
- data/lib/datadog/ci/contrib/minitest/patcher.rb +26 -0
- data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +36 -0
- data/lib/datadog/ci/contrib/rspec/example.rb +70 -0
- data/lib/datadog/ci/contrib/rspec/ext.rb +21 -0
- data/lib/datadog/ci/contrib/rspec/integration.rb +50 -0
- data/lib/datadog/ci/contrib/rspec/patcher.rb +27 -0
- data/lib/datadog/ci/ext/app_types.rb +11 -0
- data/lib/datadog/ci/ext/environment/extractor.rb +101 -0
- data/lib/datadog/ci/ext/environment/providers/appveyor.rb +98 -0
- data/lib/datadog/ci/ext/environment/providers/azure.rb +109 -0
- data/lib/datadog/ci/ext/environment/providers/base.rb +115 -0
- data/lib/datadog/ci/ext/environment/providers/bitbucket.rb +69 -0
- data/lib/datadog/ci/ext/environment/providers/bitrise.rb +77 -0
- data/lib/datadog/ci/ext/environment/providers/buddy.rb +69 -0
- data/lib/datadog/ci/ext/environment/providers/buildkite.rb +95 -0
- data/lib/datadog/ci/ext/environment/providers/circleci.rb +82 -0
- data/lib/datadog/ci/ext/environment/providers/codefresh.rb +49 -0
- data/lib/datadog/ci/ext/environment/providers/github_actions.rb +76 -0
- data/lib/datadog/ci/ext/environment/providers/gitlab.rb +119 -0
- data/lib/datadog/ci/ext/environment/providers/jenkins.rb +74 -0
- data/lib/datadog/ci/ext/environment/providers/local_git.rb +170 -0
- data/lib/datadog/ci/ext/environment/providers/teamcity.rb +29 -0
- data/lib/datadog/ci/ext/environment/providers/travis.rb +65 -0
- data/lib/datadog/ci/ext/environment/providers/user_defined_tags.rb +62 -0
- data/lib/datadog/ci/ext/environment/providers.rb +52 -0
- data/lib/datadog/ci/ext/environment.rb +82 -0
- data/lib/datadog/ci/ext/git.rb +37 -0
- data/lib/datadog/ci/ext/settings.rb +12 -0
- data/lib/datadog/ci/ext/test.rb +37 -0
- data/lib/datadog/ci/extensions.rb +19 -0
- data/lib/datadog/ci/flush.rb +38 -0
- data/lib/datadog/ci/test.rb +82 -0
- data/lib/datadog/ci/utils/git.rb +22 -0
- data/lib/datadog/ci/version.rb +28 -0
- data/lib/datadog/ci.rb +24 -0
- data/sig/datadog/ci/configuration/components.rbs +11 -0
- data/sig/datadog/ci/configuration/settings.rbs +14 -0
- data/sig/datadog/ci/contrib/cucumber/configuration/settings.rbs +12 -0
- data/sig/datadog/ci/contrib/cucumber/ext.rbs +25 -0
- data/sig/datadog/ci/contrib/cucumber/formatter.rbs +35 -0
- data/sig/datadog/ci/contrib/cucumber/instrumentation.rbs +16 -0
- data/sig/datadog/ci/contrib/cucumber/integration.rbs +25 -0
- data/sig/datadog/ci/contrib/cucumber/patcher.rbs +15 -0
- data/sig/datadog/ci/contrib/minitest/configuration/settings.rbs +12 -0
- data/sig/datadog/ci/contrib/minitest/ext.rbs +23 -0
- data/sig/datadog/ci/contrib/minitest/hooks.rbs +19 -0
- data/sig/datadog/ci/contrib/minitest/integration.rbs +25 -0
- data/sig/datadog/ci/contrib/minitest/patcher.rbs +15 -0
- data/sig/datadog/ci/contrib/rspec/configuration/settings.rbs +12 -0
- data/sig/datadog/ci/contrib/rspec/example.rbs +20 -0
- data/sig/datadog/ci/contrib/rspec/ext.rbs +23 -0
- data/sig/datadog/ci/contrib/rspec/integration.rbs +25 -0
- data/sig/datadog/ci/contrib/rspec/patcher.rbs +15 -0
- data/sig/datadog/ci/ext/app_types.rbs +9 -0
- data/sig/datadog/ci/ext/environment/extractor.rbs +27 -0
- data/sig/datadog/ci/ext/environment/providers/appveyor.rbs +48 -0
- data/sig/datadog/ci/ext/environment/providers/azure.rbs +56 -0
- data/sig/datadog/ci/ext/environment/providers/base.rbs +69 -0
- data/sig/datadog/ci/ext/environment/providers/bitbucket.rbs +37 -0
- data/sig/datadog/ci/ext/environment/providers/bitrise.rbs +41 -0
- data/sig/datadog/ci/ext/environment/providers/buddy.rbs +37 -0
- data/sig/datadog/ci/ext/environment/providers/buildkite.rbs +45 -0
- data/sig/datadog/ci/ext/environment/providers/circleci.rbs +41 -0
- data/sig/datadog/ci/ext/environment/providers/codefresh.rbs +25 -0
- data/sig/datadog/ci/ext/environment/providers/github_actions.rbs +37 -0
- data/sig/datadog/ci/ext/environment/providers/gitlab.rbs +57 -0
- data/sig/datadog/ci/ext/environment/providers/jenkins.rbs +35 -0
- data/sig/datadog/ci/ext/environment/providers/local_git.rbs +66 -0
- data/sig/datadog/ci/ext/environment/providers/teamcity.rbs +17 -0
- data/sig/datadog/ci/ext/environment/providers/travis.rbs +35 -0
- data/sig/datadog/ci/ext/environment/providers/user_defined_tags.rbs +33 -0
- data/sig/datadog/ci/ext/environment/providers.rbs +13 -0
- data/sig/datadog/ci/ext/environment.rbs +44 -0
- data/sig/datadog/ci/ext/git.rbs +53 -0
- data/sig/datadog/ci/ext/settings.rbs +9 -0
- data/sig/datadog/ci/ext/test.rbs +43 -0
- data/sig/datadog/ci/extensions.rbs +7 -0
- data/sig/datadog/ci/flush.rbs +15 -0
- data/sig/datadog/ci/test.rbs +18 -0
- data/sig/datadog/ci/utils/git.rbs +11 -0
- data/sig/datadog/ci/version.rbs +16 -0
- data/sig/datadog/ci.rbs +7 -0
- metadata +154 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
module Environment
|
5
|
+
module Providers
|
6
|
+
class LocalGit < Base
|
7
|
+
class GitUser
|
8
|
+
attr_reader name: String?
|
9
|
+
attr_reader email: String?
|
10
|
+
attr_reader timestamp: String?
|
11
|
+
|
12
|
+
@name: String?
|
13
|
+
@email: String?
|
14
|
+
@timestamp: String?
|
15
|
+
|
16
|
+
def initialize: (String? name, String? email, String? timestamp) -> void
|
17
|
+
|
18
|
+
def date: () -> String?
|
19
|
+
end
|
20
|
+
|
21
|
+
class NilUser < GitUser
|
22
|
+
def initialize: () -> void
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
@author: GitUser
|
28
|
+
@committer: GitUser
|
29
|
+
|
30
|
+
def git_repository_url: () -> String?
|
31
|
+
|
32
|
+
def git_commit_sha: () -> String?
|
33
|
+
|
34
|
+
def git_branch: () -> String?
|
35
|
+
|
36
|
+
def git_tag: () -> String?
|
37
|
+
|
38
|
+
def git_commit_message: () -> String?
|
39
|
+
|
40
|
+
def git_commit_author_name: () -> String?
|
41
|
+
|
42
|
+
def git_commit_author_email: () -> String?
|
43
|
+
|
44
|
+
def git_commit_author_date: () -> String?
|
45
|
+
|
46
|
+
def git_commit_committer_name: () -> String?
|
47
|
+
|
48
|
+
def git_commit_committer_email: () -> String?
|
49
|
+
|
50
|
+
def git_commit_committer_date: () -> String?
|
51
|
+
|
52
|
+
def workspace_path: () -> String?
|
53
|
+
|
54
|
+
def exec_git_command: (String cmd) -> String?
|
55
|
+
|
56
|
+
def author: () -> GitUser
|
57
|
+
|
58
|
+
def committer: () -> GitUser
|
59
|
+
|
60
|
+
def set_git_commit_users: () -> void
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
module Environment
|
5
|
+
module Providers
|
6
|
+
class Teamcity < Extractor
|
7
|
+
def provider_name: () -> "teamcity"
|
8
|
+
|
9
|
+
def job_name: () -> String?
|
10
|
+
|
11
|
+
def job_url: () -> String?
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
module Environment
|
5
|
+
module Providers
|
6
|
+
class Travis < Extractor
|
7
|
+
def provider_name: () -> "travisci"
|
8
|
+
|
9
|
+
def job_url: () -> String?
|
10
|
+
|
11
|
+
def pipeline_id: () -> String?
|
12
|
+
|
13
|
+
def pipeline_name: () -> String?
|
14
|
+
|
15
|
+
def pipeline_number: () -> String?
|
16
|
+
|
17
|
+
def pipeline_url: () -> String?
|
18
|
+
|
19
|
+
def workspace_path: () -> String?
|
20
|
+
|
21
|
+
def git_repository_url: () -> ::String
|
22
|
+
|
23
|
+
def git_commit_sha: () -> String?
|
24
|
+
|
25
|
+
def git_branch: () -> String?
|
26
|
+
|
27
|
+
def git_tag: () -> String?
|
28
|
+
|
29
|
+
def git_commit_message: () -> String?
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
module Environment
|
5
|
+
module Providers
|
6
|
+
class UserDefinedTags < Base
|
7
|
+
def git_repository_url: () -> String?
|
8
|
+
|
9
|
+
def git_commit_sha: () -> String?
|
10
|
+
|
11
|
+
def git_branch: () -> String?
|
12
|
+
|
13
|
+
def git_tag: () -> String?
|
14
|
+
|
15
|
+
def git_commit_message: () -> String?
|
16
|
+
|
17
|
+
def git_commit_author_name: () -> String?
|
18
|
+
|
19
|
+
def git_commit_author_email: () -> String?
|
20
|
+
|
21
|
+
def git_commit_author_date: () -> String?
|
22
|
+
|
23
|
+
def git_commit_committer_name: () -> String?
|
24
|
+
|
25
|
+
def git_commit_committer_email: () -> String?
|
26
|
+
|
27
|
+
def git_commit_committer_date: () -> String?
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
# Defines constants for CI tags
|
5
|
+
module Environment
|
6
|
+
TAG_JOB_NAME: String
|
7
|
+
|
8
|
+
TAG_JOB_URL: String
|
9
|
+
|
10
|
+
TAG_PIPELINE_ID: String
|
11
|
+
|
12
|
+
TAG_PIPELINE_NAME: String
|
13
|
+
|
14
|
+
TAG_PIPELINE_NUMBER: String
|
15
|
+
|
16
|
+
TAG_PIPELINE_URL: String
|
17
|
+
|
18
|
+
TAG_PROVIDER_NAME: String
|
19
|
+
|
20
|
+
TAG_STAGE_NAME: String
|
21
|
+
|
22
|
+
TAG_WORKSPACE_PATH: String
|
23
|
+
|
24
|
+
TAG_NODE_LABELS: String
|
25
|
+
|
26
|
+
TAG_NODE_NAME: String
|
27
|
+
|
28
|
+
TAG_CI_ENV_VARS: String
|
29
|
+
|
30
|
+
HEX_NUMBER_REGEXP: Regexp
|
31
|
+
|
32
|
+
PROVIDERS: ::Array[Array[String | Symbol]]
|
33
|
+
|
34
|
+
def self?.tags: (untyped env) -> Hash[String, String]
|
35
|
+
|
36
|
+
def self?.ensure_post_conditions: (Hash[String, String] tags) -> void
|
37
|
+
|
38
|
+
def self?.validate_repository_url: (String? repo_url) -> void
|
39
|
+
|
40
|
+
def self?.validate_git_sha: (String? git_sha) -> void
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
module Git
|
5
|
+
SHA_LENGTH: 40
|
6
|
+
|
7
|
+
TAG_BRANCH: "git.branch"
|
8
|
+
|
9
|
+
TAG_REPOSITORY_URL: "git.repository_url"
|
10
|
+
|
11
|
+
TAG_TAG: "git.tag"
|
12
|
+
|
13
|
+
TAG_COMMIT_AUTHOR_DATE: "git.commit.author.date"
|
14
|
+
|
15
|
+
TAG_COMMIT_AUTHOR_EMAIL: "git.commit.author.email"
|
16
|
+
|
17
|
+
TAG_COMMIT_AUTHOR_NAME: "git.commit.author.name"
|
18
|
+
|
19
|
+
TAG_COMMIT_COMMITTER_DATE: "git.commit.committer.date"
|
20
|
+
|
21
|
+
TAG_COMMIT_COMMITTER_EMAIL: "git.commit.committer.email"
|
22
|
+
|
23
|
+
TAG_COMMIT_COMMITTER_NAME: "git.commit.committer.name"
|
24
|
+
|
25
|
+
TAG_COMMIT_MESSAGE: "git.commit.message"
|
26
|
+
|
27
|
+
TAG_COMMIT_SHA: "git.commit.sha"
|
28
|
+
|
29
|
+
ENV_REPOSITORY_URL: "DD_GIT_REPOSITORY_URL"
|
30
|
+
|
31
|
+
ENV_COMMIT_SHA: "DD_GIT_COMMIT_SHA"
|
32
|
+
|
33
|
+
ENV_BRANCH: "DD_GIT_BRANCH"
|
34
|
+
|
35
|
+
ENV_TAG: "DD_GIT_TAG"
|
36
|
+
|
37
|
+
ENV_COMMIT_MESSAGE: "DD_GIT_COMMIT_MESSAGE"
|
38
|
+
|
39
|
+
ENV_COMMIT_AUTHOR_NAME: "DD_GIT_COMMIT_AUTHOR_NAME"
|
40
|
+
|
41
|
+
ENV_COMMIT_AUTHOR_EMAIL: "DD_GIT_COMMIT_AUTHOR_EMAIL"
|
42
|
+
|
43
|
+
ENV_COMMIT_AUTHOR_DATE: "DD_GIT_COMMIT_AUTHOR_DATE"
|
44
|
+
|
45
|
+
ENV_COMMIT_COMMITTER_NAME: "DD_GIT_COMMIT_COMMITTER_NAME"
|
46
|
+
|
47
|
+
ENV_COMMIT_COMMITTER_EMAIL: "DD_GIT_COMMIT_COMMITTER_EMAIL"
|
48
|
+
|
49
|
+
ENV_COMMIT_COMMITTER_DATE: "DD_GIT_COMMIT_COMMITTER_DATE"
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Ext
|
4
|
+
module Test
|
5
|
+
CONTEXT_ORIGIN: String
|
6
|
+
|
7
|
+
TAG_ARGUMENTS: String
|
8
|
+
|
9
|
+
TAG_FRAMEWORK: String
|
10
|
+
|
11
|
+
TAG_FRAMEWORK_VERSION: String
|
12
|
+
|
13
|
+
TAG_NAME: String
|
14
|
+
|
15
|
+
TAG_SKIP_REASON: String
|
16
|
+
|
17
|
+
TAG_STATUS: String
|
18
|
+
|
19
|
+
TAG_SUITE: String
|
20
|
+
|
21
|
+
TAG_TRAITS: String
|
22
|
+
|
23
|
+
TAG_TYPE: String
|
24
|
+
TAG_OS_ARCHITECTURE: String
|
25
|
+
|
26
|
+
TAG_OS_PLATFORM: String
|
27
|
+
|
28
|
+
TAG_RUNTIME_NAME: String
|
29
|
+
|
30
|
+
TAG_RUNTIME_VERSION: String
|
31
|
+
TAG_SPAN_KIND: String
|
32
|
+
|
33
|
+
module Status
|
34
|
+
PASS: String
|
35
|
+
|
36
|
+
FAIL: String
|
37
|
+
|
38
|
+
SKIP: String
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Flush
|
4
|
+
module Tagging
|
5
|
+
def get_trace: (untyped trace_op) -> untyped
|
6
|
+
end
|
7
|
+
class Finished < Tracing::Flush::Finished
|
8
|
+
prepend Tagging
|
9
|
+
end
|
10
|
+
class Partial < Tracing::Flush::Partial
|
11
|
+
prepend Tagging
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Datadog
|
2
|
+
module CI
|
3
|
+
module Test
|
4
|
+
self.@environment_tags: Hash[String, String]
|
5
|
+
|
6
|
+
def self.trace: (untyped span_name, ?::Hash[untyped, untyped] options) ?{ (untyped, untyped) -> untyped } -> untyped
|
7
|
+
def self.set_tags!: (untyped trace, untyped span, ?::Hash[untyped, untyped] tags) -> untyped
|
8
|
+
|
9
|
+
def self.passed!: (untyped span) -> untyped
|
10
|
+
|
11
|
+
def self.failed!: (untyped span, ?untyped? exception) -> untyped
|
12
|
+
|
13
|
+
def self.skipped!: (untyped span, ?untyped? exception) -> untyped
|
14
|
+
|
15
|
+
def self.set_environment_runtime_tags!: (untyped span) -> untyped
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/sig/datadog/ci.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,154 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: datadog-ci
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Datadog, Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-09-13 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |2
|
14
|
+
datadog-ci is a Datadog's CI visibility library for Ruby. It traces
|
15
|
+
tests as they are being executed and brings developers visibility into
|
16
|
+
their CI pipelines.
|
17
|
+
email:
|
18
|
+
- dev@datadoghq.com
|
19
|
+
executables: []
|
20
|
+
extensions: []
|
21
|
+
extra_rdoc_files: []
|
22
|
+
files:
|
23
|
+
- CHANGELOG.md
|
24
|
+
- LICENSE
|
25
|
+
- LICENSE-3rdparty.csv
|
26
|
+
- LICENSE.Apache
|
27
|
+
- LICENSE.BSD3
|
28
|
+
- NOTICE
|
29
|
+
- README.md
|
30
|
+
- lib/datadog/ci.rb
|
31
|
+
- lib/datadog/ci/configuration/components.rb
|
32
|
+
- lib/datadog/ci/configuration/settings.rb
|
33
|
+
- lib/datadog/ci/contrib/cucumber/configuration/settings.rb
|
34
|
+
- lib/datadog/ci/contrib/cucumber/ext.rb
|
35
|
+
- lib/datadog/ci/contrib/cucumber/formatter.rb
|
36
|
+
- lib/datadog/ci/contrib/cucumber/instrumentation.rb
|
37
|
+
- lib/datadog/ci/contrib/cucumber/integration.rb
|
38
|
+
- lib/datadog/ci/contrib/cucumber/patcher.rb
|
39
|
+
- lib/datadog/ci/contrib/minitest/configuration/settings.rb
|
40
|
+
- lib/datadog/ci/contrib/minitest/ext.rb
|
41
|
+
- lib/datadog/ci/contrib/minitest/hooks.rb
|
42
|
+
- lib/datadog/ci/contrib/minitest/integration.rb
|
43
|
+
- lib/datadog/ci/contrib/minitest/patcher.rb
|
44
|
+
- lib/datadog/ci/contrib/rspec/configuration/settings.rb
|
45
|
+
- lib/datadog/ci/contrib/rspec/example.rb
|
46
|
+
- lib/datadog/ci/contrib/rspec/ext.rb
|
47
|
+
- lib/datadog/ci/contrib/rspec/integration.rb
|
48
|
+
- lib/datadog/ci/contrib/rspec/patcher.rb
|
49
|
+
- lib/datadog/ci/ext/app_types.rb
|
50
|
+
- lib/datadog/ci/ext/environment.rb
|
51
|
+
- lib/datadog/ci/ext/environment/extractor.rb
|
52
|
+
- lib/datadog/ci/ext/environment/providers.rb
|
53
|
+
- lib/datadog/ci/ext/environment/providers/appveyor.rb
|
54
|
+
- lib/datadog/ci/ext/environment/providers/azure.rb
|
55
|
+
- lib/datadog/ci/ext/environment/providers/base.rb
|
56
|
+
- lib/datadog/ci/ext/environment/providers/bitbucket.rb
|
57
|
+
- lib/datadog/ci/ext/environment/providers/bitrise.rb
|
58
|
+
- lib/datadog/ci/ext/environment/providers/buddy.rb
|
59
|
+
- lib/datadog/ci/ext/environment/providers/buildkite.rb
|
60
|
+
- lib/datadog/ci/ext/environment/providers/circleci.rb
|
61
|
+
- lib/datadog/ci/ext/environment/providers/codefresh.rb
|
62
|
+
- lib/datadog/ci/ext/environment/providers/github_actions.rb
|
63
|
+
- lib/datadog/ci/ext/environment/providers/gitlab.rb
|
64
|
+
- lib/datadog/ci/ext/environment/providers/jenkins.rb
|
65
|
+
- lib/datadog/ci/ext/environment/providers/local_git.rb
|
66
|
+
- lib/datadog/ci/ext/environment/providers/teamcity.rb
|
67
|
+
- lib/datadog/ci/ext/environment/providers/travis.rb
|
68
|
+
- lib/datadog/ci/ext/environment/providers/user_defined_tags.rb
|
69
|
+
- lib/datadog/ci/ext/git.rb
|
70
|
+
- lib/datadog/ci/ext/settings.rb
|
71
|
+
- lib/datadog/ci/ext/test.rb
|
72
|
+
- lib/datadog/ci/extensions.rb
|
73
|
+
- lib/datadog/ci/flush.rb
|
74
|
+
- lib/datadog/ci/test.rb
|
75
|
+
- lib/datadog/ci/utils/git.rb
|
76
|
+
- lib/datadog/ci/version.rb
|
77
|
+
- sig/datadog/ci.rbs
|
78
|
+
- sig/datadog/ci/configuration/components.rbs
|
79
|
+
- sig/datadog/ci/configuration/settings.rbs
|
80
|
+
- sig/datadog/ci/contrib/cucumber/configuration/settings.rbs
|
81
|
+
- sig/datadog/ci/contrib/cucumber/ext.rbs
|
82
|
+
- sig/datadog/ci/contrib/cucumber/formatter.rbs
|
83
|
+
- sig/datadog/ci/contrib/cucumber/instrumentation.rbs
|
84
|
+
- sig/datadog/ci/contrib/cucumber/integration.rbs
|
85
|
+
- sig/datadog/ci/contrib/cucumber/patcher.rbs
|
86
|
+
- sig/datadog/ci/contrib/minitest/configuration/settings.rbs
|
87
|
+
- sig/datadog/ci/contrib/minitest/ext.rbs
|
88
|
+
- sig/datadog/ci/contrib/minitest/hooks.rbs
|
89
|
+
- sig/datadog/ci/contrib/minitest/integration.rbs
|
90
|
+
- sig/datadog/ci/contrib/minitest/patcher.rbs
|
91
|
+
- sig/datadog/ci/contrib/rspec/configuration/settings.rbs
|
92
|
+
- sig/datadog/ci/contrib/rspec/example.rbs
|
93
|
+
- sig/datadog/ci/contrib/rspec/ext.rbs
|
94
|
+
- sig/datadog/ci/contrib/rspec/integration.rbs
|
95
|
+
- sig/datadog/ci/contrib/rspec/patcher.rbs
|
96
|
+
- sig/datadog/ci/ext/app_types.rbs
|
97
|
+
- sig/datadog/ci/ext/environment.rbs
|
98
|
+
- sig/datadog/ci/ext/environment/extractor.rbs
|
99
|
+
- sig/datadog/ci/ext/environment/providers.rbs
|
100
|
+
- sig/datadog/ci/ext/environment/providers/appveyor.rbs
|
101
|
+
- sig/datadog/ci/ext/environment/providers/azure.rbs
|
102
|
+
- sig/datadog/ci/ext/environment/providers/base.rbs
|
103
|
+
- sig/datadog/ci/ext/environment/providers/bitbucket.rbs
|
104
|
+
- sig/datadog/ci/ext/environment/providers/bitrise.rbs
|
105
|
+
- sig/datadog/ci/ext/environment/providers/buddy.rbs
|
106
|
+
- sig/datadog/ci/ext/environment/providers/buildkite.rbs
|
107
|
+
- sig/datadog/ci/ext/environment/providers/circleci.rbs
|
108
|
+
- sig/datadog/ci/ext/environment/providers/codefresh.rbs
|
109
|
+
- sig/datadog/ci/ext/environment/providers/github_actions.rbs
|
110
|
+
- sig/datadog/ci/ext/environment/providers/gitlab.rbs
|
111
|
+
- sig/datadog/ci/ext/environment/providers/jenkins.rbs
|
112
|
+
- sig/datadog/ci/ext/environment/providers/local_git.rbs
|
113
|
+
- sig/datadog/ci/ext/environment/providers/teamcity.rbs
|
114
|
+
- sig/datadog/ci/ext/environment/providers/travis.rbs
|
115
|
+
- sig/datadog/ci/ext/environment/providers/user_defined_tags.rbs
|
116
|
+
- sig/datadog/ci/ext/git.rbs
|
117
|
+
- sig/datadog/ci/ext/settings.rbs
|
118
|
+
- sig/datadog/ci/ext/test.rbs
|
119
|
+
- sig/datadog/ci/extensions.rbs
|
120
|
+
- sig/datadog/ci/flush.rbs
|
121
|
+
- sig/datadog/ci/test.rbs
|
122
|
+
- sig/datadog/ci/utils/git.rbs
|
123
|
+
- sig/datadog/ci/version.rbs
|
124
|
+
homepage: https://github.com/DataDog/datadog-ci-rb
|
125
|
+
licenses:
|
126
|
+
- BSD-3-Clause
|
127
|
+
metadata:
|
128
|
+
allowed_push_host: https://rubygems.org
|
129
|
+
changelog_uri: https://github.com/DataDog/datadog-ci-rb/blob/main/CHANGELOG.md
|
130
|
+
homepage_uri: https://github.com/DataDog/datadog-ci-rb
|
131
|
+
source_code_uri: https://github.com/DataDog/datadog-ci-rb
|
132
|
+
post_install_message:
|
133
|
+
rdoc_options: []
|
134
|
+
require_paths:
|
135
|
+
- lib
|
136
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: 2.1.0
|
141
|
+
- - "<"
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '3.4'
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: 2.0.0
|
149
|
+
requirements: []
|
150
|
+
rubygems_version: 3.4.18
|
151
|
+
signing_key:
|
152
|
+
specification_version: 4
|
153
|
+
summary: Datadog CI visibility for your ruby application
|
154
|
+
test_files: []
|