2020-04-24 23:36:52 +00:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
gem 'rugged', '~> 1.2'
|
2022-08-12 12:06:08 +00:00
|
|
|
gem 'github-linguist', '~> 7.20.0', require: 'linguist'
|
2020-06-18 07:06:33 +00:00
|
|
|
gem 'gitlab-markup', '~> 1.7.1'
|
2022-04-27 09:35:20 +00:00
|
|
|
gem 'activesupport', '~> 6.1.4.7'
|
2020-04-24 23:36:52 +00:00
|
|
|
gem 'rdoc', '~> 6.0'
|
2022-01-26 04:04:25 +00:00
|
|
|
gem 'gitlab-gollum-lib', '~> 4.2.7.10.gitlab.2', require: false
|
2021-05-03 20:48:10 +00:00
|
|
|
gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.4.gitlab.1', require: false
|
2022-01-26 04:04:25 +00:00
|
|
|
gem 'grpc', '~> 1.42.0' # keep in lock-step with grpc-tools
|
2020-11-24 20:58:05 +00:00
|
|
|
gem 'sentry-raven', '~> 3.0', require: false
|
|
|
|
gem 'faraday', '~> 1.0'
|
2020-04-24 23:36:52 +00:00
|
|
|
gem 'rbtrace', require: false
|
|
|
|
|
|
|
|
# Labkit provides observability functionality
|
2022-08-12 12:06:08 +00:00
|
|
|
gem 'gitlab-labkit', '~> 0.23'
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Detects the open source license the repository includes
|
|
|
|
# This version needs to be in sync with GitLab CE/EE
|
2021-03-23 19:22:30 +00:00
|
|
|
gem 'licensee', '~> 9.14.1'
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-01-26 04:04:25 +00:00
|
|
|
gem 'google-protobuf', '~> 3.19.0'
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
gem 'rubocop', '~> 0.69', require: false
|
|
|
|
gem 'rspec', require: false
|
|
|
|
gem 'rspec-parameterized', require: false
|
|
|
|
gem 'timecop', require: false
|
|
|
|
gem 'factory_bot', require: false
|
|
|
|
gem 'pry', '~> 0.12.2', require: false
|
|
|
|
|
2022-01-26 04:04:25 +00:00
|
|
|
gem 'grpc-tools', '~> 1.42.0'
|
2020-04-24 23:36:52 +00:00
|
|
|
end
|
2021-12-30 13:39:12 +00:00
|
|
|
|
|
|
|
# Gems required in omnibus-gitlab pipeline
|
|
|
|
group :development, :test, :omnibus do
|
|
|
|
# Using a fork until https://github.com/pivotal/LicenseFinder/pull/816 is
|
|
|
|
# resolved. For details, check discussion in
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/merge_requests/74881
|
|
|
|
gem 'gitlab-license_finder', require: false
|
|
|
|
end
|