2017-09-03 15:38:28 +02:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2018-11-23 16:09:35 +01:00
|
|
|
# Require bundler >= 1.16.5 to avoid this bug: https://github.com/bundler/bundler/issues/6537
|
2019-07-10 02:09:15 +02:00
|
|
|
gem 'bundler', '>= 1.17.3'
|
2018-11-23 16:09:35 +01:00
|
|
|
|
2019-03-23 00:48:02 +01:00
|
|
|
gem 'rugged', '~> 0.28'
|
2019-11-26 17:32:01 +01:00
|
|
|
gem 'github-linguist', '~> 7.5', require: 'linguist'
|
2019-05-03 20:20:20 +02:00
|
|
|
gem 'gitlab-markup', '~> 1.7.0'
|
2020-03-02 21:21:35 +01:00
|
|
|
gem 'activesupport', '6.0.2'
|
2019-11-26 17:32:01 +01:00
|
|
|
gem 'rdoc', '~> 6.0'
|
2019-05-03 20:20:20 +02:00
|
|
|
gem 'gitlab-gollum-lib', '~> 4.2.7.7', require: false
|
|
|
|
gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.2', require: false
|
2019-11-26 17:32:01 +01:00
|
|
|
gem 'grpc', '~> 1.24.0'
|
2019-05-03 20:20:20 +02:00
|
|
|
gem 'sentry-raven', '~> 2.9.0', require: false
|
2018-09-21 09:33:18 +02:00
|
|
|
gem 'faraday', '~> 0.12'
|
2019-03-17 00:52:22 +01:00
|
|
|
gem 'rbtrace', require: false
|
2018-04-25 19:55:12 +02:00
|
|
|
|
2019-07-10 02:09:15 +02:00
|
|
|
# Labkit provides observability functionality
|
2020-03-02 21:21:35 +01:00
|
|
|
gem 'gitlab-labkit', '~> 0.9.1'
|
2019-07-10 02:09:15 +02:00
|
|
|
|
2018-04-25 19:55:12 +02:00
|
|
|
# Detects the open source license the repository includes
|
|
|
|
# This version needs to be in sync with GitLab CE/EE
|
2018-05-23 22:22:32 +02:00
|
|
|
gem 'licensee', '~> 8.9.0'
|
2018-03-19 13:35:58 +01:00
|
|
|
|
2019-11-26 17:32:01 +01:00
|
|
|
gem 'google-protobuf', '~> 3.8.0'
|
2017-11-06 19:13:35 +01:00
|
|
|
|
|
|
|
group :development, :test do
|
2019-07-10 02:09:15 +02:00
|
|
|
gem 'rubocop', '~> 0.69', require: false
|
2018-03-19 13:35:58 +01:00
|
|
|
gem 'rspec', require: false
|
2018-11-23 16:09:35 +01:00
|
|
|
gem 'rspec-parameterized', require: false
|
|
|
|
gem 'timecop', require: false
|
|
|
|
gem 'factory_bot', require: false
|
2019-03-23 00:48:02 +01:00
|
|
|
gem 'pry', '~> 0.12.2', require: false
|
2019-03-17 00:52:22 +01:00
|
|
|
|
|
|
|
# gitlab-shell spec gems
|
|
|
|
gem 'listen', '~> 0.5.0'
|
2020-01-31 12:25:55 +01:00
|
|
|
gem 'simplecov', '~> 0.17.1', require: false
|
2019-03-17 00:52:22 +01:00
|
|
|
gem 'vcr', '~> 4.0.0'
|
|
|
|
gem 'webmock', '~> 3.4.0'
|
2017-11-06 19:13:35 +01:00
|
|
|
end
|