forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (43 loc) · 1.44 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-docker", path: "../docker"
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-terraform", path: "../terraform"
gem "http", "~> 5.1"
gem "octokit", "6.1.1"
gem "sentry-raven", "~> 3.1"
gem "terminal-table", "~> 3.0.2"
group :test do
common_gemspec = File.expand_path("../common/dependabot-common.gemspec", __dir__)
deps_shared_with_core = %w(
debug
rspec
rubocop
rubocop-performance
vcr
webmock
)
Dir.chdir(File.dirname(common_gemspec)) do
Gem::Specification.load(common_gemspec).development_dependencies.each do |dep|
next unless deps_shared_with_core.include?(dep.name)
gem dep.name, *dep.requirement.as_list
end
end
end
group :development do
gem "licensed", "~> 4.3", require: false
end