datadog-ci 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +30 -0
  3. data/LICENSE +6 -0
  4. data/LICENSE-3rdparty.csv +2 -0
  5. data/LICENSE.Apache +200 -0
  6. data/LICENSE.BSD3 +24 -0
  7. data/NOTICE +4 -0
  8. data/README.md +125 -0
  9. data/lib/datadog/ci/configuration/components.rb +32 -0
  10. data/lib/datadog/ci/configuration/settings.rb +51 -0
  11. data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +36 -0
  12. data/lib/datadog/ci/contrib/cucumber/ext.rb +22 -0
  13. data/lib/datadog/ci/contrib/cucumber/formatter.rb +94 -0
  14. data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +28 -0
  15. data/lib/datadog/ci/contrib/cucumber/integration.rb +47 -0
  16. data/lib/datadog/ci/contrib/cucumber/patcher.rb +27 -0
  17. data/lib/datadog/ci/contrib/minitest/configuration/settings.rb +36 -0
  18. data/lib/datadog/ci/contrib/minitest/ext.rb +21 -0
  19. data/lib/datadog/ci/contrib/minitest/hooks.rb +66 -0
  20. data/lib/datadog/ci/contrib/minitest/integration.rb +46 -0
  21. data/lib/datadog/ci/contrib/minitest/patcher.rb +26 -0
  22. data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +36 -0
  23. data/lib/datadog/ci/contrib/rspec/example.rb +70 -0
  24. data/lib/datadog/ci/contrib/rspec/ext.rb +21 -0
  25. data/lib/datadog/ci/contrib/rspec/integration.rb +50 -0
  26. data/lib/datadog/ci/contrib/rspec/patcher.rb +27 -0
  27. data/lib/datadog/ci/ext/app_types.rb +11 -0
  28. data/lib/datadog/ci/ext/environment/extractor.rb +101 -0
  29. data/lib/datadog/ci/ext/environment/providers/appveyor.rb +98 -0
  30. data/lib/datadog/ci/ext/environment/providers/azure.rb +109 -0
  31. data/lib/datadog/ci/ext/environment/providers/base.rb +115 -0
  32. data/lib/datadog/ci/ext/environment/providers/bitbucket.rb +69 -0
  33. data/lib/datadog/ci/ext/environment/providers/bitrise.rb +77 -0
  34. data/lib/datadog/ci/ext/environment/providers/buddy.rb +69 -0
  35. data/lib/datadog/ci/ext/environment/providers/buildkite.rb +95 -0
  36. data/lib/datadog/ci/ext/environment/providers/circleci.rb +82 -0
  37. data/lib/datadog/ci/ext/environment/providers/codefresh.rb +49 -0
  38. data/lib/datadog/ci/ext/environment/providers/github_actions.rb +76 -0
  39. data/lib/datadog/ci/ext/environment/providers/gitlab.rb +119 -0
  40. data/lib/datadog/ci/ext/environment/providers/jenkins.rb +74 -0
  41. data/lib/datadog/ci/ext/environment/providers/local_git.rb +170 -0
  42. data/lib/datadog/ci/ext/environment/providers/teamcity.rb +29 -0
  43. data/lib/datadog/ci/ext/environment/providers/travis.rb +65 -0
  44. data/lib/datadog/ci/ext/environment/providers/user_defined_tags.rb +62 -0
  45. data/lib/datadog/ci/ext/environment/providers.rb +52 -0
  46. data/lib/datadog/ci/ext/environment.rb +82 -0
  47. data/lib/datadog/ci/ext/git.rb +37 -0
  48. data/lib/datadog/ci/ext/settings.rb +12 -0
  49. data/lib/datadog/ci/ext/test.rb +37 -0
  50. data/lib/datadog/ci/extensions.rb +19 -0
  51. data/lib/datadog/ci/flush.rb +38 -0
  52. data/lib/datadog/ci/test.rb +82 -0
  53. data/lib/datadog/ci/utils/git.rb +22 -0
  54. data/lib/datadog/ci/version.rb +28 -0
  55. data/lib/datadog/ci.rb +24 -0
  56. data/sig/datadog/ci/configuration/components.rbs +11 -0
  57. data/sig/datadog/ci/configuration/settings.rbs +14 -0
  58. data/sig/datadog/ci/contrib/cucumber/configuration/settings.rbs +12 -0
  59. data/sig/datadog/ci/contrib/cucumber/ext.rbs +25 -0
  60. data/sig/datadog/ci/contrib/cucumber/formatter.rbs +35 -0
  61. data/sig/datadog/ci/contrib/cucumber/instrumentation.rbs +16 -0
  62. data/sig/datadog/ci/contrib/cucumber/integration.rbs +25 -0
  63. data/sig/datadog/ci/contrib/cucumber/patcher.rbs +15 -0
  64. data/sig/datadog/ci/contrib/minitest/configuration/settings.rbs +12 -0
  65. data/sig/datadog/ci/contrib/minitest/ext.rbs +23 -0
  66. data/sig/datadog/ci/contrib/minitest/hooks.rbs +19 -0
  67. data/sig/datadog/ci/contrib/minitest/integration.rbs +25 -0
  68. data/sig/datadog/ci/contrib/minitest/patcher.rbs +15 -0
  69. data/sig/datadog/ci/contrib/rspec/configuration/settings.rbs +12 -0
  70. data/sig/datadog/ci/contrib/rspec/example.rbs +20 -0
  71. data/sig/datadog/ci/contrib/rspec/ext.rbs +23 -0
  72. data/sig/datadog/ci/contrib/rspec/integration.rbs +25 -0
  73. data/sig/datadog/ci/contrib/rspec/patcher.rbs +15 -0
  74. data/sig/datadog/ci/ext/app_types.rbs +9 -0
  75. data/sig/datadog/ci/ext/environment/extractor.rbs +27 -0
  76. data/sig/datadog/ci/ext/environment/providers/appveyor.rbs +48 -0
  77. data/sig/datadog/ci/ext/environment/providers/azure.rbs +56 -0
  78. data/sig/datadog/ci/ext/environment/providers/base.rbs +69 -0
  79. data/sig/datadog/ci/ext/environment/providers/bitbucket.rbs +37 -0
  80. data/sig/datadog/ci/ext/environment/providers/bitrise.rbs +41 -0
  81. data/sig/datadog/ci/ext/environment/providers/buddy.rbs +37 -0
  82. data/sig/datadog/ci/ext/environment/providers/buildkite.rbs +45 -0
  83. data/sig/datadog/ci/ext/environment/providers/circleci.rbs +41 -0
  84. data/sig/datadog/ci/ext/environment/providers/codefresh.rbs +25 -0
  85. data/sig/datadog/ci/ext/environment/providers/github_actions.rbs +37 -0
  86. data/sig/datadog/ci/ext/environment/providers/gitlab.rbs +57 -0
  87. data/sig/datadog/ci/ext/environment/providers/jenkins.rbs +35 -0
  88. data/sig/datadog/ci/ext/environment/providers/local_git.rbs +66 -0
  89. data/sig/datadog/ci/ext/environment/providers/teamcity.rbs +17 -0
  90. data/sig/datadog/ci/ext/environment/providers/travis.rbs +35 -0
  91. data/sig/datadog/ci/ext/environment/providers/user_defined_tags.rbs +33 -0
  92. data/sig/datadog/ci/ext/environment/providers.rbs +13 -0
  93. data/sig/datadog/ci/ext/environment.rbs +44 -0
  94. data/sig/datadog/ci/ext/git.rbs +53 -0
  95. data/sig/datadog/ci/ext/settings.rbs +9 -0
  96. data/sig/datadog/ci/ext/test.rbs +43 -0
  97. data/sig/datadog/ci/extensions.rbs +7 -0
  98. data/sig/datadog/ci/flush.rbs +15 -0
  99. data/sig/datadog/ci/test.rbs +18 -0
  100. data/sig/datadog/ci/utils/git.rbs +11 -0
  101. data/sig/datadog/ci/version.rbs +16 -0
  102. data/sig/datadog/ci.rbs +7 -0
  103. 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,13 @@
1
+ module Datadog
2
+ module CI
3
+ module Ext
4
+ module Environment
5
+ module Providers
6
+ PROVIDERS: ::Array[[String, untyped]]
7
+
8
+ def self.for_environment: (Hash[String, String?] env) -> Providers::Base
9
+ end
10
+ end
11
+ end
12
+ end
13
+ 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,9 @@
1
+ module Datadog
2
+ module CI
3
+ module Ext
4
+ module Settings
5
+ ENV_MODE_ENABLED: String
6
+ end
7
+ end
8
+ end
9
+ 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,7 @@
1
+ module Datadog
2
+ module CI
3
+ module Extensions
4
+ def self.activate!: () -> untyped
5
+ end
6
+ end
7
+ 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
@@ -0,0 +1,11 @@
1
+ module Datadog
2
+ module CI
3
+ module Utils
4
+ module Git
5
+ def self?.normalize_ref: (untyped name) -> (nil | untyped)
6
+
7
+ def self?.is_git_tag?: (untyped ref) -> untyped
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,16 @@
1
+ module Datadog
2
+ module CI
3
+ module VERSION
4
+ MAJOR: "0"
5
+ MINOR: "1"
6
+ PATCH: "0"
7
+ PRE: String?
8
+ BUILD: String?
9
+
10
+ STRING: String
11
+
12
+ MINIMUM_RUBY_VERSION: "2.1.0"
13
+ MAXIMUM_RUBY_VERSION: "3.4"
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,7 @@
1
+ module Datadog
2
+ module CI
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ class Error < StandardError
5
+ end
6
+ end
7
+ end
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: []