mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-21 23:43:41 +00:00
51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'gitlab-qa', '~> 15', '>= 15.5.0', require: 'gitlab/qa'
|
|
gem 'gitlab_quality-test_tooling', '~> 2.15.0', require: false
|
|
gem 'gitlab-utils', path: '../gems/gitlab-utils'
|
|
gem 'activesupport', '~> 7.1.5.1' # This should stay in sync with the root's Gemfile
|
|
gem 'allure-rspec', '~> 2.27.0'
|
|
gem 'capybara', '~> 3.40.0'
|
|
gem 'capybara-screenshot', '~> 1.0.26'
|
|
gem 'rake', '~> 13', '>= 13.3.0'
|
|
gem 'rspec', '~> 3.13', '>= 3.13.1'
|
|
gem 'selenium-webdriver', '= 4.33.0'
|
|
gem 'rest-client', '~> 2.1.0'
|
|
gem 'rspec_junit_formatter', '~> 0.6.0'
|
|
gem 'faker', '~> 3.5', '>= 3.5.1'
|
|
gem 'knapsack', '~> 4.0'
|
|
gem 'parallel_tests', '~> 5.1'
|
|
gem 'rotp', '~> 6.3.0'
|
|
gem 'parallel', '~> 1.27'
|
|
gem 'rainbow', '~> 3.1.1'
|
|
gem 'rspec-parameterized', '~> 2.0.0'
|
|
gem 'octokit', '~> 9.2.0', require: false
|
|
gem "faraday-retry", "~> 2.3", ">= 2.3.2"
|
|
gem 'zeitwerk', '~> 2.7', '>= 2.7.3'
|
|
gem 'influxdb-client', '~> 3.2'
|
|
gem 'terminal-table', '~> 4.0.0', require: false
|
|
gem 'slack-notifier', '~> 2.4', require: false
|
|
gem 'googleauth', '~> 1.9.0', require: false # see: https://gitlab.com/gitlab-org/gitlab/-/issues/449019
|
|
gem 'fog-google', '~> 1.24', '>= 1.24.1', require: false
|
|
gem 'fog-core', '2.1.0', require: false # fog-google generates a ton of warnings with latest core
|
|
gem "warning", "~> 1.5"
|
|
|
|
# dependencies for jenkins client
|
|
gem 'nokogiri', '~> 1.18', '>= 1.18.1'
|
|
|
|
gem 'deprecation_toolkit', '~> 2.2.3', require: false
|
|
|
|
gem 'factory_bot', '~> 6.5.1'
|
|
|
|
group :development do
|
|
gem 'pry-byebug', '~> 3.11.0', platform: :mri
|
|
gem "ruby-debug-ide", "~> 0.7.5"
|
|
end
|
|
|
|
group :ci do
|
|
gem 'gitlab-orchestrator', path: 'gems/gitlab-orchestrator'
|
|
gem 'junit_merge', '~> 0.1.2'
|
|
end
|