2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
source 'https://rubygems.org'
2014-09-02 18:07:02 +05:30
2021-09-04 01:27:46 +05:30
gem 'rails' , '~> 6.1.3.2'
2015-12-23 02:04:40 +05:30
2020-04-08 14:13:33 +05:30
gem 'bootsnap' , '~> 1.4.6'
2019-10-12 21:52:04 +05:30
2015-12-23 02:04:40 +05:30
# Responders respond_to and respond_with
2019-12-26 22:10:19 +05:30
gem 'responders' , '~> 3.0'
2014-09-02 18:07:02 +05:30
2016-11-03 12:29:30 +05:30
gem 'sprockets' , '~> 3.7.0'
2014-09-02 18:07:02 +05:30
# Default values for AR models
2021-03-11 19:13:27 +05:30
gem 'default_value_for' , '~> 3.4.0'
2014-09-02 18:07:02 +05:30
# Supported DBs
2019-10-12 21:52:04 +05:30
gem 'pg' , '~> 1.1'
2014-09-02 18:07:02 +05:30
2021-04-17 20:07:23 +05:30
gem 'rugged' , '~> 1.1'
2021-06-08 01:23:25 +05:30
gem 'grape-path-helpers' , '~> 1.6.3'
2017-08-17 22:00:37 +05:30
2020-11-24 15:15:51 +05:30
gem 'faraday' , '~> 1.0'
2021-03-08 18:12:59 +05:30
gem 'marginalia' , '~> 1.10.0'
2017-08-17 22:00:37 +05:30
2021-06-08 01:23:25 +05:30
# Authorization
gem 'declarative_policy' , '~> 1.0.0'
2015-09-11 14:41:01 +05:30
# Authentication libraries
2021-01-03 14:25:43 +05:30
gem 'devise' , '~> 4.7.2'
2021-04-17 20:07:23 +05:30
gem 'bcrypt' , '~> 3.1' , '>= 3.1.14'
2021-03-11 19:13:27 +05:30
gem 'doorkeeper' , '~> 5.5.0.rc2'
gem 'doorkeeper-openid_connect' , '~> 1.7.5'
2021-04-15 22:33:27 +05:30
gem 'rexml' , '~> 3.2.5'
gem 'ruby-saml' , '~> 1.12.1'
2018-05-09 12:01:36 +05:30
gem 'omniauth' , '~> 1.8'
2018-03-26 14:24:53 +05:30
gem 'omniauth-auth0' , '~> 2.0.0'
2021-04-17 20:07:23 +05:30
gem 'omniauth-azure-activedirectory-v2' , '~> 0.1'
gem 'omniauth-azure-oauth2' , '~> 0.0.9' # Deprecated v1 version
2017-09-10 17:25:29 +05:30
gem 'omniauth-cas3' , '~> 1.1.4'
2017-08-17 22:00:37 +05:30
gem 'omniauth-facebook' , '~> 4.0.0'
2020-03-13 15:44:24 +05:30
gem 'omniauth-github' , '~> 1.4'
2017-08-17 22:00:37 +05:30
gem 'omniauth-gitlab' , '~> 1.0.2'
2019-02-15 15:39:39 +05:30
gem 'omniauth-google-oauth2' , '~> 0.6.0'
2017-08-17 22:00:37 +05:30
gem 'omniauth-kerberos' , '~> 0.3.0' , group : :kerberos
gem 'omniauth-oauth2-generic' , '~> 0.2.2'
2018-05-09 12:01:36 +05:30
gem 'omniauth-saml' , '~> 1.10'
2018-11-08 19:23:39 +05:30
gem 'omniauth-shibboleth' , '~> 1.3.0'
2018-05-09 12:01:36 +05:30
gem 'omniauth-twitter' , '~> 1.4'
2020-10-24 23:57:45 +05:30
gem 'omniauth_crowd' , '~> 2.4.0'
2018-11-08 19:23:39 +05:30
gem 'omniauth-authentiq' , '~> 0.3.3'
2021-06-08 01:23:25 +05:30
gem 'gitlab-omniauth-openid-connect' , '~> 0.4.0' , require : 'omniauth_openid_connect'
2019-07-31 22:56:46 +05:30
gem 'omniauth-salesforce' , '~> 1.0.5'
2020-11-24 15:15:51 +05:30
gem 'omniauth-atlassian-oauth2' , '~> 0.2.0'
2021-01-29 00:20:46 +05:30
gem 'rack-oauth2' , '~> 1.16.0'
2019-02-15 15:39:39 +05:30
gem 'jwt' , '~> 2.1.0'
2015-04-26 12:48:37 +05:30
2019-12-04 20:38:33 +05:30
# Kerberos authentication. EE-only
gem 'gssapi' , group : :kerberos
2016-04-02 18:10:28 +05:30
# Spam and anti-bot protection
2019-07-07 11:18:12 +05:30
gem 'recaptcha' , '~> 4.11' , require : 'recaptcha/rails'
2020-01-01 13:55:28 +05:30
gem 'akismet' , '~> 3.0'
2021-03-08 18:12:59 +05:30
gem 'invisible_captcha' , '~> 1.1.0'
2016-01-14 18:37:52 +05:30
2015-09-11 14:41:01 +05:30
# Two-factor authentication
2021-04-29 21:17:54 +05:30
gem 'devise-two-factor' , '~> 4.0.0'
2015-09-25 12:07:36 +05:30
gem 'rqrcode-rails3' , '~> 0.1.7'
2018-05-09 12:01:36 +05:30
gem 'attr_encrypted' , '~> 3.1.0'
2016-06-16 23:09:34 +05:30
gem 'u2f' , '~> 0.2.1'
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
# GitLab Pages
2021-02-22 17:27:13 +05:30
gem 'validates_hostname' , '~> 1.0.11'
2020-02-01 01:16:34 +05:30
gem 'rubyzip' , '~> 2.0.0' , require : 'zip'
2019-09-04 21:01:54 +05:30
# GitLab Pages letsencrypt support
2020-07-28 23:09:34 +05:30
gem 'acme-client' , '~> 2.0' , '>= 2.0.6'
2017-08-17 22:00:37 +05:30
2015-04-26 12:48:37 +05:30
# Browser detection
2020-10-24 23:57:45 +05:30
gem 'browser' , '~> 4.2'
2014-09-02 18:07:02 +05:30
2021-04-17 20:07:23 +05:30
# OS detection for usage ping
gem 'ohai' , '~> 16.10'
2017-09-10 17:25:29 +05:30
# GPG
2019-12-26 22:10:19 +05:30
gem 'gpgme' , '~> 2.0.19'
2017-09-10 17:25:29 +05:30
2014-09-02 18:07:02 +05:30
# LDAP Auth
2015-09-11 14:41:01 +05:30
# GitLab fork with several improvements to original library. For full list of changes
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
2019-07-07 11:18:12 +05:30
gem 'gitlab_omniauth-ldap' , '~> 2.1.1' , require : 'omniauth-ldap'
2021-03-08 18:12:59 +05:30
gem 'net-ldap' , '~> 0.16.3'
2014-09-02 18:07:02 +05:30
# API
2021-03-11 19:13:27 +05:30
gem 'grape' , '~> 1.5.2'
2021-06-08 01:23:25 +05:30
gem 'grape-entity' , '~> 0.9.0'
2020-03-13 15:44:24 +05:30
gem 'rack-cors' , '~> 1.0.6' , require : 'rack/cors'
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
# GraphQL API
2021-04-17 20:07:23 +05:30
gem 'graphql' , '~> 1.11.8'
2019-12-21 20:55:43 +05:30
# NOTE: graphiql-rails v1.5+ doesn't work: https://gitlab.com/gitlab-org/gitlab/issues/31771
2019-12-04 20:38:33 +05:30
# TODO: remove app/views/graphiql/rails/editors/show.html.erb when https://github.com/rmosolgo/graphiql-rails/pull/71 is released:
2019-12-21 20:55:43 +05:30
# https://gitlab.com/gitlab-org/gitlab/issues/31747
2018-11-08 19:23:39 +05:30
gem 'graphiql-rails' , '~> 1.4.10'
2021-09-04 01:27:46 +05:30
gem 'apollo_upload_server' , '~> 2.1.0'
2019-09-30 21:07:59 +05:30
gem 'graphql-docs' , '~> 1.6.0' , group : [ :development , :test ]
2021-01-29 00:20:46 +05:30
gem 'graphlient' , '~> 0.4.0' # Used by BulkImport feature (group::import)
2018-11-08 19:23:39 +05:30
2021-01-03 14:25:43 +05:30
gem 'hashie'
2017-08-17 22:00:37 +05:30
# Disable strong_params so that Mash does not respond to :permitted?
gem 'hashie-forbidden_attributes'
2014-09-02 18:07:02 +05:30
# Pagination
2017-09-10 17:25:29 +05:30
gem 'kaminari' , '~> 1.0'
2014-09-02 18:07:02 +05:30
# HAML
2021-04-29 21:17:54 +05:30
gem 'hamlit' , '~> 2.15.0'
2014-09-02 18:07:02 +05:30
# Files attachments
2019-02-15 15:39:39 +05:30
gem 'carrierwave' , '~> 1.3'
2021-01-03 14:25:43 +05:30
gem 'mini_magick' , '~> 4.10.1'
2014-09-02 18:07:02 +05:30
2016-06-16 23:09:34 +05:30
# for backups
2021-04-17 20:07:23 +05:30
gem 'fog-aws' , '~> 3.9'
2019-07-07 11:18:12 +05:30
# Locked until fog-google resolves https://github.com/fog/fog-google/issues/421.
# Also see config/initializers/fog_core_patch.rb.
gem 'fog-core' , '= 2.1.0'
2021-04-17 20:07:23 +05:30
gem 'gitlab-fog-google' , '~> 1.13' , require : 'fog/google'
2019-07-07 11:18:12 +05:30
gem 'fog-local' , '~> 0.6'
gem 'fog-openstack' , '~> 1.0'
2016-08-24 12:49:21 +05:30
gem 'fog-rackspace' , '~> 0.1.1'
2019-07-07 11:18:12 +05:30
gem 'fog-aliyun' , '~> 0.3'
2021-09-04 01:27:46 +05:30
gem 'gitlab-fog-azure-rm' , '~> 1.1.1' , require : false
2016-06-16 23:09:34 +05:30
2017-08-17 22:00:37 +05:30
# for Google storage
2020-06-23 00:09:42 +05:30
gem 'google-api-client' , '~> 0.33'
2017-08-17 22:00:37 +05:30
2014-09-02 18:07:02 +05:30
# for aws storage
2016-08-24 12:49:21 +05:30
gem 'unf' , '~> 0.1.4'
2014-09-02 18:07:02 +05:30
# Seed data
2018-03-17 18:26:18 +05:30
gem 'seed-fu' , '~> 2.3.7'
2014-09-02 18:07:02 +05:30
2019-12-04 20:38:33 +05:30
# Search
2020-03-13 15:44:24 +05:30
gem 'elasticsearch-model' , '~> 6.1'
gem 'elasticsearch-rails' , '~> 6.1' , require : 'elasticsearch/rails/instrumentation'
2020-11-24 15:15:51 +05:30
gem 'elasticsearch-api' , '~> 6.8.2'
2020-10-24 23:57:45 +05:30
gem 'aws-sdk-core' , '~> 3'
gem 'aws-sdk-cloudformation' , '~> 1'
gem 'aws-sdk-s3' , '~> 1'
gem 'faraday_middleware-aws-sigv4' , '~>0.3.0'
2019-12-04 20:38:33 +05:30
2015-09-11 14:41:01 +05:30
# Markdown and HTML processing
2021-03-08 18:12:59 +05:30
gem 'html-pipeline' , '~> 2.13.2'
2020-03-13 15:44:24 +05:30
gem 'deckar01-task_list' , '2.3.1'
2020-05-24 23:13:21 +05:30
gem 'gitlab-markup' , '~> 1.7.1'
2018-12-05 23:21:45 +05:30
gem 'github-markup' , '~> 1.7.0' , require : 'github/markup'
2021-02-22 17:27:13 +05:30
gem 'commonmarker' , '~> 0.21'
2021-04-29 21:17:54 +05:30
gem 'kramdown' , '~> 2.3.1'
2017-08-17 22:00:37 +05:30
gem 'RedCloth' , '~> 4.3.2'
2021-07-02 01:05:55 +05:30
gem 'gitlab-rdoc' , '~> 6.3.2' , require : 'rdoc' # We need this fork until rdoc releases a new version. See https://gitlab.com/gitlab-org/gitlab/-/issues/334695
2017-08-17 22:00:37 +05:30
gem 'org-ruby' , '~> 0.9.12'
gem 'creole' , '~> 0.5.0'
gem 'wikicloth' , '0.8.1'
2019-09-30 21:07:59 +05:30
gem 'asciidoctor' , '~> 2.0.10'
2019-09-04 21:01:54 +05:30
gem 'asciidoctor-include-ext' , '~> 0.3.1' , require : false
2020-05-24 23:13:21 +05:30
gem 'asciidoctor-plantuml' , '~> 0.0.12'
2021-03-11 19:13:27 +05:30
gem 'asciidoctor-kroki' , '~> 0.4.0' , require : false
2021-02-22 17:27:13 +05:30
gem 'rouge' , '~> 3.26.0'
2019-03-02 22:35:43 +05:30
gem 'truncato' , '~> 0.7.11'
2019-07-07 11:18:12 +05:30
gem 'bootstrap_form' , '~> 4.2.0'
2021-07-02 01:05:55 +05:30
gem 'nokogiri' , '~> 1.11.4'
2018-12-13 13:39:08 +05:30
gem 'escape_utils' , '~> 1.1'
2014-09-02 18:07:02 +05:30
2018-11-08 19:23:39 +05:30
# Calendar rendering
gem 'icalendar'
2014-09-02 18:07:02 +05:30
# Diffs
2020-04-08 14:13:33 +05:30
gem 'diffy' , '~> 3.3'
2019-12-26 22:10:19 +05:30
gem 'diff_match_patch' , '~> 0.1.0'
2014-09-02 18:07:02 +05:30
# Application server
2021-01-29 00:20:46 +05:30
gem 'rack' , '~> 2.2.3'
2020-07-28 23:09:34 +05:30
# https://github.com/sharpstone/rack-timeout/blob/master/README.md#rails-apps-manually
gem 'rack-timeout' , '~> 0.5.1' , require : 'rack/timeout/base'
2019-02-15 15:39:39 +05:30
2018-12-13 13:39:08 +05:30
group :puma do
2021-09-04 01:27:46 +05:30
gem 'puma' , '~> 5.3.1' , require : false
2021-03-08 18:12:59 +05:30
gem 'puma_worker_killer' , '~> 0.3.1' , require : false
2018-12-13 13:39:08 +05:30
end
2014-09-02 18:07:02 +05:30
# State machine
2021-03-08 18:12:59 +05:30
gem 'state_machines-activerecord' , '~> 0.8.0'
2014-09-02 18:07:02 +05:30
# Issue tags
2021-03-08 18:12:59 +05:30
gem 'acts-as-taggable-on' , '~> 7.0'
2014-09-02 18:07:02 +05:30
# Background jobs
2019-07-31 22:56:46 +05:30
gem 'sidekiq' , '~> 5.2.7'
2019-03-02 22:35:43 +05:30
gem 'sidekiq-cron' , '~> 1.0'
2020-10-24 23:57:45 +05:30
gem 'redis-namespace' , '~> 1.7.0'
2021-04-29 21:17:54 +05:30
gem 'gitlab-sidekiq-fetcher' , '0.5.6' , require : 'sidekiq-reliable-fetch'
2017-08-17 22:00:37 +05:30
# Cron Parser
2019-09-04 21:01:54 +05:30
gem 'fugit' , '~> 1.2.1'
2014-09-02 18:07:02 +05:30
# HTTP requests
2019-07-07 11:18:12 +05:30
gem 'httparty' , '~> 0.16.4'
2014-09-02 18:07:02 +05:30
# Colored output to console
2018-11-20 20:47:30 +05:30
gem 'rainbow' , '~> 3.0'
2014-09-02 18:07:02 +05:30
2018-11-08 19:23:39 +05:30
# Progress bar
2021-02-22 17:27:13 +05:30
gem 'ruby-progressbar' , '~> 1.10'
2018-11-08 19:23:39 +05:30
2014-09-02 18:07:02 +05:30
# GitLab settings
2015-09-25 12:07:36 +05:30
gem 'settingslogic' , '~> 2.0.9'
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
# Linear-time regex library for untrusted regular expressions
2020-05-24 23:13:21 +05:30
gem 're2' , '~> 1.2.0'
2017-08-17 22:00:37 +05:30
2014-09-02 18:07:02 +05:30
# Misc
2015-09-25 12:07:36 +05:30
2019-07-07 11:18:12 +05:30
gem 'version_sorter' , '~> 2.2.4'
2014-09-02 18:07:02 +05:30
2018-11-20 20:47:30 +05:30
# Export Ruby Regex to Javascript
2020-10-24 23:57:45 +05:30
gem 'js_regex' , '~> 3.4'
2018-11-20 20:47:30 +05:30
2018-10-15 14:42:47 +05:30
# User agent parsing
gem 'device_detector'
2016-06-02 11:05:42 +05:30
# Redis
2019-10-12 21:52:04 +05:30
gem 'redis' , '~> 4.0'
2016-06-02 11:05:42 +05:30
gem 'connection_pool' , '~> 2.0'
2019-10-12 21:52:04 +05:30
# Redis session store
gem 'redis-rails' , '~> 5.0.2'
2019-02-15 15:39:39 +05:30
# Discord integration
2021-04-17 20:07:23 +05:30
gem 'discordrb-webhooks' , '~> 3.4' , require : false
2019-02-15 15:39:39 +05:30
2019-09-30 21:07:59 +05:30
# Jira integration
2021-03-08 18:12:59 +05:30
gem 'jira-ruby' , '~> 2.1.4'
2019-12-04 20:38:33 +05:30
gem 'atlassian-jwt' , '~> 0.2.0'
2017-08-17 22:00:37 +05:30
2014-09-02 18:07:02 +05:30
# Flowdock integration
2018-12-13 13:39:08 +05:30
gem 'flowdock' , '~> 0.7'
2014-09-02 18:07:02 +05:30
# Slack integration
2021-01-03 14:25:43 +05:30
gem 'slack-messenger' , '~> 2.3.4'
2015-04-26 12:48:37 +05:30
2018-11-18 11:00:15 +05:30
# Hangouts Chat integration
2021-09-04 01:27:46 +05:30
gem 'hangouts-chat' , '~> 0.0.5' , require : 'hangouts_chat'
2018-11-18 11:00:15 +05:30
2015-04-26 12:48:37 +05:30
# Asana integration
2021-03-08 18:12:59 +05:30
gem 'asana' , '~> 0.10.3'
2014-09-02 18:07:02 +05:30
2015-09-25 12:07:36 +05:30
# FogBugz integration
gem 'ruby-fogbugz' , '~> 0.2.1'
2017-08-17 22:00:37 +05:30
# Kubernetes integration
2021-01-03 14:25:43 +05:30
gem 'kubeclient' , '~> 4.9.1'
2014-09-02 18:07:02 +05:30
# Sanitize user input
2020-11-24 15:15:51 +05:30
gem 'sanitize' , '~> 5.2.1'
2021-06-08 01:23:25 +05:30
gem 'babosa' , '~> 1.0.4'
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
# Sanitizes SVG input
2018-04-04 21:44:52 +05:30
gem 'loofah' , '~> 2.2'
2016-04-02 18:10:28 +05:30
2016-06-02 11:05:42 +05:30
# Working with license
2021-03-11 19:13:27 +05:30
gem 'licensee' , '~> 9.14.1'
2016-06-02 11:05:42 +05:30
2015-04-26 12:48:37 +05:30
# Detect and convert string character encoding
2021-01-03 14:25:43 +05:30
gem 'charlock_holmes' , '~> 0.7.7'
2014-09-02 18:07:02 +05:30
2019-02-15 15:39:39 +05:30
# Detect mime content type from content
2021-04-29 21:17:54 +05:30
gem 'ruby-magic' , '~> 0.4'
2019-02-15 15:39:39 +05:30
2018-03-17 18:26:18 +05:30
# Faster blank
gem 'fast_blank'
2016-09-13 17:45:13 +05:30
# Parse time & duration
2020-01-01 13:55:28 +05:30
gem 'gitlab-chronic' , '~> 0.10.5'
gem 'gitlab_chronic_duration' , '~> 0.10.6.2'
2016-06-16 23:09:34 +05:30
2017-08-17 22:00:37 +05:30
gem 'rack-proxy' , '~> 0.6.0'
2019-07-31 22:56:46 +05:30
gem 'sassc-rails' , '~> 2.1.0'
2021-03-11 19:13:27 +05:30
gem 'autoprefixer-rails' , '10.2.0.0'
2021-01-03 14:25:43 +05:30
gem 'terser' , '1.0.2'
2014-09-02 18:07:02 +05:30
2020-03-13 15:44:24 +05:30
gem 'addressable' , '~> 2.7'
2017-09-10 17:25:29 +05:30
gem 'gemojione' , '~> 3.3'
2021-04-29 21:17:54 +05:30
gem 'gon' , '~> 6.4.0'
2020-05-24 23:13:21 +05:30
gem 'request_store' , '~> 1.5'
2017-08-17 22:00:37 +05:30
gem 'base32' , '~> 0.3.0'
2014-09-02 18:07:02 +05:30
2021-06-08 01:23:25 +05:30
gem 'gitlab-license' , '~> 1.5'
2019-12-04 20:38:33 +05:30
2019-12-26 22:10:19 +05:30
# Protect against bruteforcing
2020-05-24 23:13:21 +05:30
gem 'rack-attack' , '~> 6.3.0'
2019-12-26 22:10:19 +05:30
2016-04-02 18:10:28 +05:30
# Sentry integration
2021-09-04 01:27:46 +05:30
gem 'sentry-raven' , '~> 3.1'
2016-04-02 18:10:28 +05:30
2021-01-29 00:20:46 +05:30
# PostgreSQL query parsing
2021-09-04 01:27:46 +05:30
#
# We need this fork until https://github.com/pganalyze/pg_query/pull/212
# and https://github.com/pganalyze/pg_query/pull/213 are
# released. gitlab-labkit will need to be updated to use the pg_query
# version.
gem 'gitlab-pg_query' , '~> 2.0.4' , require : 'pg_query'
2021-01-29 00:20:46 +05:30
2019-12-26 22:10:19 +05:30
gem 'premailer-rails' , '~> 1.10.3'
2016-06-02 11:05:42 +05:30
2019-07-31 22:56:46 +05:30
# LabKit: Tracing and Correlation
2021-09-04 01:27:46 +05:30
gem 'gitlab-labkit' , '~> 0.18.0'
2021-03-05 16:19:46 +05:30
# Thrift is a dependency of gitlab-labkit, we want a version higher than 0.14.0
# because of https://gitlab.com/gitlab-org/gitlab/-/issues/321900
gem 'thrift' , '>= 0.14.0'
2019-07-31 22:56:46 +05:30
2017-08-17 22:00:37 +05:30
# I18n
2021-01-29 00:20:46 +05:30
gem 'ruby_parser' , '~> 3.15' , require : false
2020-03-13 15:44:24 +05:30
gem 'rails-i18n' , '~> 6.0'
2017-08-17 22:00:37 +05:30
gem 'gettext_i18n_rails' , '~> 1.8.0'
2018-05-09 12:01:36 +05:30
gem 'gettext_i18n_rails_js' , '~> 1.3'
2020-11-24 15:15:51 +05:30
gem 'gettext' , '~> 3.3' , require : false , group : :development
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
gem 'batch-loader' , '~> 2.0.1'
2018-03-17 18:26:18 +05:30
2017-09-10 17:25:29 +05:30
# Perf bar
2020-01-01 13:55:28 +05:30
gem 'peek' , '~> 1.1'
2019-10-12 21:52:04 +05:30
# Snowplow events tracking
gem 'snowplow-tracker' , '~> 0.6.1'
2017-09-10 17:25:29 +05:30
2016-01-14 18:37:52 +05:30
# Metrics
group :metrics do
2020-11-24 15:15:51 +05:30
gem 'method_source' , '~> 1.0' , require : false
2021-03-08 18:12:59 +05:30
gem 'webrick' , '~> 1.6.1' , require : false
2017-09-10 17:25:29 +05:30
# Prometheus
2021-01-03 14:25:43 +05:30
gem 'prometheus-client-mmap' , '~> 0.12.0'
2016-01-14 18:37:52 +05:30
end
2014-09-02 18:07:02 +05:30
group :development do
2021-04-29 21:17:54 +05:30
gem 'lefthook' , '~> 0.7.0' , require : false
2021-09-04 01:27:46 +05:30
gem 'solargraph' , '~> 0.42' , require : false
2015-09-25 12:07:36 +05:30
2021-04-29 21:17:54 +05:30
gem 'letter_opener_web' , '~> 1.4.0'
2014-09-02 18:07:02 +05:30
# Better errors handler
2021-04-29 21:17:54 +05:30
gem 'better_errors' , '~> 2.9.0'
2014-09-02 18:07:02 +05:30
# thin instead webrick
2021-03-11 19:13:27 +05:30
gem 'thin' , '~> 1.8.0'
2014-09-02 18:07:02 +05:30
end
group :development , :test do
2021-02-22 17:27:13 +05:30
gem 'deprecation_toolkit' , '~> 1.5.1' , require : false
2021-03-11 19:13:27 +05:30
gem 'bullet' , '~> 6.1.3'
2021-06-08 01:23:25 +05:30
gem 'pry-byebug'
2020-03-13 15:44:24 +05:30
gem 'pry-rails' , '~> 0.3.9'
2021-06-08 01:23:25 +05:30
gem 'pry-shell' , '~> 0.4.0'
2015-09-11 14:41:01 +05:30
2018-11-08 19:23:39 +05:30
gem 'awesome_print' , require : false
2015-09-25 12:07:36 +05:30
2019-02-15 15:39:39 +05:30
gem 'database_cleaner' , '~> 1.7.0'
2021-03-08 18:12:59 +05:30
gem 'factory_bot_rails' , '~> 6.1.0'
2021-04-29 21:17:54 +05:30
gem 'rspec-rails' , '~> 5.0.1'
2014-09-02 18:07:02 +05:30
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
2019-02-15 15:39:39 +05:30
gem 'minitest' , '~> 5.11.0'
2014-09-02 18:07:02 +05:30
# Generate Fake data
2019-02-15 15:39:39 +05:30
gem 'ffaker' , '~> 2.10'
2014-09-02 18:07:02 +05:30
2021-01-29 00:20:46 +05:30
gem 'spring' , '~> 2.1.0'
2017-08-17 22:00:37 +05:30
gem 'spring-commands-rspec' , '~> 1.0.4'
2015-04-26 12:48:37 +05:30
2021-04-29 21:17:54 +05:30
gem 'gitlab-styles' , '~> 6.2.0' , require : false
2018-03-17 18:26:18 +05:30
2021-01-29 00:20:46 +05:30
gem 'haml_lint' , '~> 0.36.0' , require : false
2021-03-11 19:13:27 +05:30
gem 'bundler-audit' , '~> 0.7.0.1' , require : false
2015-10-24 18:46:33 +05:30
2016-08-24 12:49:21 +05:30
gem 'benchmark-ips' , '~> 2.3.0' , require : false
2016-06-16 23:09:34 +05:30
2021-04-29 21:17:54 +05:30
gem 'knapsack' , '~> 1.21.1'
2021-01-29 00:20:46 +05:30
gem 'crystalball' , '~> 0.7.0' , require : false
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
gem 'simple_po_parser' , '~> 1.1.2' , require : false
2018-05-09 12:01:36 +05:30
2020-04-08 14:13:33 +05:30
gem 'timecop' , '~> 0.9.1'
2020-03-13 15:44:24 +05:30
gem 'png_quantizator' , '~> 0.2.1' , require : false
gem 'parallel' , '~> 1.19' , require : false
2020-07-28 23:09:34 +05:30
gem 'rblineprof' , '~> 0.3.6' , platform : :mri , require : false
2021-04-29 21:17:54 +05:30
gem 'test_file_finder' , '~> 0.1.3'
2014-09-02 18:07:02 +05:30
end
2021-04-17 20:07:23 +05:30
group :development , :test , :danger do
2021-09-04 01:27:46 +05:30
gem 'gitlab-dangerfiles' , '~> 2.1.2' , require : false
2021-04-17 20:07:23 +05:30
end
2021-01-03 14:25:43 +05:30
group :development , :test , :coverage do
gem 'simplecov' , '~> 0.18.5' , require : false
gem 'simplecov-cobertura' , '~> 1.3.1' , require : false
end
2019-12-26 22:10:19 +05:30
# Gems required in omnibus-gitlab pipeline
group :development , :test , :omnibus do
2021-01-03 14:25:43 +05:30
gem 'license_finder' , '~> 6.0' , require : false
2019-12-26 22:10:19 +05:30
end
2014-09-02 18:07:02 +05:30
group :test do
2020-01-01 13:55:28 +05:30
gem 'fuubar' , '~> 2.2.0'
gem 'rspec-retry' , '~> 0.6.1'
2021-01-29 00:20:46 +05:30
gem 'rspec_profiling' , '~> 0.0.6'
2020-01-01 13:55:28 +05:30
gem 'rspec-parameterized' , require : false
2021-06-08 01:23:25 +05:30
gem 'capybara' , '~> 3.35.3'
2020-01-01 13:55:28 +05:30
gem 'capybara-screenshot' , '~> 1.0.22'
gem 'selenium-webdriver' , '~> 3.142'
2019-09-04 21:01:54 +05:30
gem 'shoulda-matchers' , '~> 4.0.1' , require : false
2018-11-08 19:23:39 +05:30
gem 'email_spec' , '~> 2.2.0'
2021-01-03 14:25:43 +05:30
gem 'webmock' , '~> 3.9.1'
2019-02-15 15:39:39 +05:30
gem 'rails-controller-testing'
gem 'concurrent-ruby' , '~> 1.1'
2020-10-24 23:57:45 +05:30
gem 'test-prof' , '~> 0.12.0'
2018-11-20 20:47:30 +05:30
gem 'rspec_junit_formatter'
2019-12-26 22:10:19 +05:30
gem 'guard-rspec'
2020-05-24 23:13:21 +05:30
# Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527
gem 'derailed_benchmarks' , require : false
2014-09-02 18:07:02 +05:30
end
2020-03-13 15:44:24 +05:30
gem 'octokit' , '~> 4.15'
2015-09-25 12:07:36 +05:30
2020-04-08 14:13:33 +05:30
# https://gitlab.com/gitlab-org/gitlab/issues/207207
2021-04-17 20:07:23 +05:30
gem 'gitlab-mail_room' , '~> 0.0.9' , require : 'mail_room'
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
gem 'email_reply_trimmer' , '~> 0.1'
gem 'html2text'
2015-09-25 12:07:36 +05:30
2020-04-22 19:07:51 +05:30
gem 'ruby-prof' , '~> 1.3.0'
2020-03-13 15:44:24 +05:30
gem 'stackprof' , '~> 0.2.15' , require : false
2018-11-18 11:00:15 +05:30
gem 'rbtrace' , '~> 0.4' , require : false
2019-09-04 21:01:54 +05:30
gem 'memory_profiler' , '~> 0.9' , require : false
gem 'benchmark-memory' , '~> 0.1' , require : false
gem 'activerecord-explain-analyze' , '~> 0.1' , require : false
2016-09-13 17:45:13 +05:30
2015-09-25 12:07:36 +05:30
# OAuth
2017-09-10 17:25:29 +05:30
gem 'oauth2' , '~> 1.4'
2015-09-25 12:07:36 +05:30
2016-06-02 11:05:42 +05:30
# Health check
2020-10-24 23:57:45 +05:30
gem 'health_check' , '~> 3.0'
2016-08-24 12:49:21 +05:30
# System information
2017-08-17 22:00:37 +05:30
gem 'vmstat' , '~> 2.3.0'
2016-08-24 12:49:21 +05:30
gem 'sys-filesystem' , '~> 1.1.6'
2017-08-17 22:00:37 +05:30
2019-12-04 20:38:33 +05:30
# NTP client
gem 'net-ntp'
2017-09-10 17:25:29 +05:30
# SSH host key support
2020-05-24 23:13:21 +05:30
gem 'net-ssh' , '~> 6.0'
2019-07-07 11:18:12 +05:30
gem 'sshkey' , '~> 2.0'
2017-09-10 17:25:29 +05:30
# Required for ED25519 SSH host key support
group :ed25519 do
2018-11-08 19:23:39 +05:30
gem 'ed25519' , '~> 1.2'
2017-09-10 17:25:29 +05:30
gem 'bcrypt_pbkdf' , '~> 1.0'
end
2021-06-08 01:23:25 +05:30
# Spamcheck GRPC protocol definitions
gem 'spamcheck' , '~> 0.1.0'
2019-10-12 21:52:04 +05:30
# Gitaly GRPC protocol definitions
2021-09-04 01:27:46 +05:30
gem 'gitaly' , '~> 14.0.0.pre.rc2'
# KAS GRPC protocol definitions
gem 'kas-grpc' , '~> 0.0.2'
2019-07-07 11:18:12 +05:30
2020-10-24 23:57:45 +05:30
gem 'grpc' , '~> 1.30.2'
2018-03-27 19:54:05 +05:30
2021-09-04 01:27:46 +05:30
gem 'google-protobuf' , '~> 3.17.1'
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
gem 'toml-rb' , '~> 1.0.0'
2017-09-10 17:25:29 +05:30
# Feature toggles
2021-09-04 01:27:46 +05:30
gem 'flipper' , '~> 0.21.0'
gem 'flipper-active_record' , '~> 0.21.0'
gem 'flipper-active_support_cache_store' , '~> 0.21.0'
2019-12-04 20:38:33 +05:30
gem 'unleash' , '~> 0.1.5'
2021-06-08 01:23:25 +05:30
gem 'gitlab-experiment' , '~> 0.5.4'
2017-09-10 17:25:29 +05:30
# Structured logging
gem 'lograge' , '~> 0.5'
2018-03-17 18:26:18 +05:30
gem 'grape_logging' , '~> 1.7'
2019-12-04 20:38:33 +05:30
# DNS Lookup
2019-12-21 20:55:43 +05:30
gem 'gitlab-net-dns' , '~> 0.9.1'
2019-12-04 20:38:33 +05:30
# Countries list
gem 'countries' , '~> 3.0'
2019-12-26 22:10:19 +05:30
gem 'retriable' , '~> 3.1.2'
2020-03-13 15:44:24 +05:30
# LRU cache
gem 'lru_redux'
gem 'erubi' , '~> 1.9.0'
# Locked as long as quoted-printable encoding issues are not resolved
# Monkey-patched in `config/initializers/mail_encoding_patch.rb`
# See https://gitlab.com/gitlab-org/gitlab/issues/197386
gem 'mail' , '= 2.7.1'
2021-04-29 21:17:54 +05:30
gem 'mail-smtp_pool' , '~> 0.1.0' , path : 'vendor/gems/mail-smtp_pool' , require : false
2020-04-22 19:07:51 +05:30
# File encryption
2021-04-29 21:17:54 +05:30
gem 'lockbox' , '~> 0.6.2'
2020-05-24 23:13:21 +05:30
# Email validation
gem 'valid_email' , '~> 0.1'
# JSON
gem 'json' , '~> 2.3.0'
2020-10-24 23:57:45 +05:30
gem 'json_schemer' , '~> 0.2.12'
2020-07-28 23:09:34 +05:30
gem 'oj' , '~> 3.10.6'
gem 'multi_json' , '~> 1.14.1'
2020-10-24 23:57:45 +05:30
gem 'yajl-ruby' , '~> 1.4.1' , require : 'yajl'
2020-11-24 15:15:51 +05:30
gem 'webauthn' , '~> 2.3'
2021-01-03 14:25:43 +05:30
# IPAddress utilities
gem 'ipaddress' , '~> 0.8.3'
2021-03-11 19:13:27 +05:30
gem 'parslet' , '~> 1.8'