forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (45 loc) · 1.84 KB
/
Gemfile
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
# frozen_string_literal: true
source "https://rubygems.org"
gem "dependabot-bundler", path: "../bundler"
gem "dependabot-cargo", path: "../cargo"
gem "dependabot-common", path: "../common"
gem "dependabot-composer", path: "../composer"
gem "dependabot-devcontainers", path: "../devcontainers"
gem "dependabot-docker", path: "../docker"
gem "dependabot-dotnet_sdk", path: "../dotnet_sdk"
gem "dependabot-elm", path: "../elm"
gem "dependabot-github_actions", path: "../github_actions"
gem "dependabot-git_submodules", path: "../git_submodules"
gem "dependabot-go_modules", path: "../go_modules"
gem "dependabot-gradle", path: "../gradle"
gem "dependabot-hex", path: "../hex"
gem "dependabot-maven", path: "../maven"
gem "dependabot-npm_and_yarn", path: "../npm_and_yarn"
gem "dependabot-nuget", path: "../nuget"
gem "dependabot-pub", path: "../pub"
gem "dependabot-python", path: "../python"
gem "dependabot-silent", path: "../silent"
gem "dependabot-swift", path: "../swift"
gem "dependabot-terraform", path: "../terraform"
gem "http", "~> 5.1"
gem "octokit", "7.2.0"
gem "opentelemetry-exporter-otlp", "~> 0.29"
gem "opentelemetry-exporter-otlp-metrics", "~> 0.1"
gem "opentelemetry-instrumentation-excon", "~> 0.22"
gem "opentelemetry-instrumentation-faraday", "~> 0.24"
gem "opentelemetry-instrumentation-http", "~> 0.23"
gem "opentelemetry-instrumentation-net_http", "~> 0.22"
gem "opentelemetry-metrics-sdk", "~> 0.2"
gem "opentelemetry-sdk", "~> 1.5"
gem "sentry-opentelemetry", "~> 5.16"
gem "sentry-ruby", "~> 5.16"
gem "terminal-table", "~> 3.0.2"
gem "flamegraph", "~> 0.9.5"
group :test do
common_gemspec = File.expand_path("../common/dependabot-common.gemspec", __dir__)
Dir.chdir(File.dirname(common_gemspec)) do
Gem::Specification.load(common_gemspec).development_dependencies.each do |dep|
gem dep.name, *dep.requirement.as_list
end
end
end