forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (37 loc) · 1012 Bytes
/
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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec path: "bundler"
gemspec path: "cargo"
gemspec path: "common"
gemspec path: "composer"
gemspec path: "docker"
gemspec path: "elm"
gemspec path: "github_actions"
gemspec path: "git_submodules"
gemspec path: "go_modules"
gemspec path: "gradle"
gemspec path: "hex"
gemspec path: "maven"
gemspec path: "npm_and_yarn"
gemspec path: "nuget"
gemspec path: "pub"
gemspec path: "python"
gemspec path: "swift"
gemspec path: "terraform"
# Sorbet
gem "sorbet", "0.5.11156", group: :development
gem "tapioca", "0.11.14", require: false, group: :development
common_gemspec = File.expand_path("common/dependabot-common.gemspec", __dir__)
deps_shared_with_common = %w(
gpgme
rake
stackprof
webmock
webrick
)
Dir.chdir(File.dirname(common_gemspec)) do
Gem::Specification.load(common_gemspec).development_dependencies.each do |dep|
next unless deps_shared_with_common.include?(dep.name)
gem dep.name, *dep.requirement.as_list
end
end