2020-04-24 23:36:52 +00:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
gem 'rugged', '~> 1.5.1'
|
|
|
|
gem 'gitlab-markup', '~> 1.8.0'
|
|
|
|
gem 'activesupport', '~> 6.1.7.2'
|
|
|
|
gem 'grpc', '~> 1.42.0' # keep in lock-step with grpc-tools in ../tools/protogem
|
|
|
|
gem 'sentry-raven', '~> 3.1', require: false
|
2020-04-24 23:36:52 +00:00
|
|
|
gem 'rbtrace', require: false
|
|
|
|
|
2022-12-02 08:20:57 +00:00
|
|
|
# The Gitaly Gem contains the Protobuf and gRPC definitions required by the
|
|
|
|
# Ruby sidecar.
|
|
|
|
gem 'gitaly', '~> 15.5.0'
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
# Labkit provides observability functionality
|
2023-03-27 19:17:25 +00:00
|
|
|
gem 'gitlab-labkit', '~> 0.31', '>= 0.31.1'
|
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
|
2022-09-30 11:47:45 +00:00
|
|
|
gem 'licensee', '~> 9.15'
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
gem 'google-protobuf', '~> 3.22.3'
|
2023-03-15 16:39:30 +00:00
|
|
|
gem 'nokogiri', '~> 1.14'
|
2022-12-02 08:20:57 +00:00
|
|
|
|
|
|
|
# Rails is currently blocked on the upgrade to the new major version for Redis,
|
|
|
|
# so we don't upgrade either until the issue is resolved. This is an indirect
|
|
|
|
# dependency and can thus be removed when the version constraint is gone.
|
|
|
|
gem 'redis', '~> 4.8.0'
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
group :development, :test do
|
2023-03-15 16:39:30 +00:00
|
|
|
gem 'rubocop', '~> 1.38', require: false
|
|
|
|
gem 'rspec', '~> 3.12.0', require: false
|
2020-04-24 23:36:52 +00:00
|
|
|
gem 'rspec-parameterized', require: false
|
|
|
|
gem 'factory_bot', require: false
|
2023-03-15 16:39:30 +00:00
|
|
|
gem 'pry', '~> 0.13.1', require: false
|
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
|