gitlab-org--gitlab-foss/Gemfile

437 lines
10 KiB
Ruby
Raw Normal View History

2018-03-14 22:50:16 +00:00
# --- Special code for migrating to Rails 5.0 ---
def rails5?
%w[1 true].include?(ENV["RAILS5"])
end
gem_versions = {}
gem_versions['activerecord_sane_schema_dumper'] = rails5? ? '1.0' : '0.2'
gem_versions['default_value_for'] = rails5? ? '~> 3.0.5' : '~> 3.0.0'
gem_versions['rails'] = rails5? ? '5.0.7' : '4.2.10'
2018-03-14 22:50:16 +00:00
gem_versions['rails-i18n'] = rails5? ? '~> 5.1' : '~> 4.0.9'
# --- The end of special code for migrating to Rails 5.0 ---
2016-07-01 23:14:12 +00:00
source 'https://rubygems.org'
2011-10-08 21:36:38 +00:00
2018-03-14 22:50:16 +00:00
gem 'rails', gem_versions['rails']
2015-11-26 13:48:01 +00:00
gem 'rails-deprecated_sanitizer', '~> 1.0.3'
2015-11-25 16:18:44 +00:00
# Responders respond_to and respond_with
gem 'responders', '~> 2.0'
gem 'sprockets', '~> 3.7.0'
# Default values for AR models
2018-03-14 22:50:16 +00:00
gem 'default_value_for', gem_versions['default_value_for']
2012-06-20 10:45:26 +00:00
# Supported DBs
gem 'mysql2', '~> 0.4.10', group: :mysql
2016-07-01 23:14:12 +00:00
gem 'pg', '~> 0.18.2', group: :postgres
2012-06-20 10:45:26 +00:00
gem 'rugged', '~> 0.27'
gem 'grape-path-helpers', '~> 1.0'
2017-01-04 18:43:06 +00:00
gem 'faraday', '~> 0.12'
2017-04-12 01:29:30 +00:00
2015-06-30 19:25:36 +00:00
# Authentication libraries
2018-03-21 17:22:24 +00:00
gem 'devise', '~> 4.4'
gem 'doorkeeper', '~> 4.3'
gem 'doorkeeper-openid_connect', '~> 1.3'
2018-03-15 07:38:01 +00:00
gem 'omniauth', '~> 1.8'
gem 'omniauth-auth0', '~> 2.0.0'
gem 'omniauth-azure-oauth2', '~> 0.0.9'
gem 'omniauth-cas3', '~> 1.1.4'
2017-02-08 18:41:27 +00:00
gem 'omniauth-facebook', '~> 4.0.0'
gem 'omniauth-github', '~> 1.3'
2017-02-08 18:41:27 +00:00
gem 'omniauth-gitlab', '~> 1.0.2'
gem 'omniauth-google-oauth2', '~> 0.5.3'
2017-02-08 18:41:27 +00:00
gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos
gem 'omniauth-oauth2-generic', '~> 0.2.2'
2018-03-15 08:20:51 +00:00
gem 'omniauth-saml', '~> 1.10'
2017-02-08 18:41:27 +00:00
gem 'omniauth-shibboleth', '~> 1.2.0'
2018-03-20 06:52:10 +00:00
gem 'omniauth-twitter', '~> 1.4'
2017-02-08 18:41:27 +00:00
gem 'omniauth_crowd', '~> 2.2.0'
2018-05-24 18:08:16 +00:00
gem 'omniauth-authentiq', '~> 0.3.3'
2017-02-08 18:41:27 +00:00
gem 'rack-oauth2', '~> 1.2.1'
gem 'jwt', '~> 1.5.6'
2012-06-20 10:45:26 +00:00
# Spam and anti-bot protection
gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails'
gem 'akismet', '~> 2.0'
2015-03-27 22:35:26 +00:00
# Two-factor authentication
gem 'devise-two-factor', '~> 3.0.0'
2015-08-26 01:42:46 +00:00
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 3.1.0'
gem 'u2f', '~> 0.2.1'
2015-03-27 22:35:26 +00:00
2016-02-09 17:06:55 +00:00
# GitLab Pages
gem 'validates_hostname', '~> 1.0.6'
2016-02-09 17:06:55 +00:00
# Browser detection
2016-07-01 23:14:12 +00:00
gem 'browser', '~> 2.2'
2017-02-15 00:01:30 +00:00
# GPG
gem 'gpgme'
# LDAP Auth
# GitLab fork with several improvements to original library. For full list of changes
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
gem 'gitlab_omniauth-ldap', '~> 2.0.4', require: 'omniauth-ldap'
gem 'net-ldap'
# Git Wiki
2016-02-28 12:11:43 +00:00
# Required manually in config/initializers/gollum.rb to control load order
gem 'gitlab-gollum-lib', '~> 4.2', require: false
gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4', require: false
2012-10-02 13:29:03 +00:00
# Language detection
gem 'github-linguist', '~> 5.3.3', require: 'linguist'
2012-10-02 13:29:03 +00:00
2012-08-11 19:59:56 +00:00
# API
gem 'grape', '~> 1.0'
2018-04-04 14:56:14 +00:00
gem 'grape-entity', '~> 0.7.1'
2018-01-02 20:20:42 +00:00
gem 'rack-cors', '~> 1.0.0', require: 'rack/cors'
2012-08-11 19:59:56 +00:00
# Disable strong_params so that Mash does not respond to :permitted?
gem 'hashie-forbidden_attributes'
2012-08-11 19:59:56 +00:00
# Pagination
gem 'kaminari', '~> 1.0'
2012-08-11 19:59:56 +00:00
# HAML
gem 'hamlit', '~> 2.6.1'
2012-08-11 19:59:56 +00:00
# Files attachments
2017-10-29 12:19:40 +00:00
gem 'carrierwave', '~> 1.2'
2013-07-08 06:47:31 +00:00
# Drag and Drop UI
2015-08-26 01:42:46 +00:00
gem 'dropzonejs-rails', '~> 0.7.1'
# for backups
2018-03-23 10:07:22 +00:00
gem 'fog-aws', '~> 2.0.1'
2017-05-01 20:15:16 +00:00
gem 'fog-core', '~> 1.44'
2018-03-23 10:07:22 +00:00
gem 'fog-google', '~> 1.3.3'
gem 'fog-local', '~> 0.3'
gem 'fog-openstack', '~> 0.1'
gem 'fog-rackspace', '~> 0.1.1'
gem 'fog-aliyun', '~> 0.2.0'
# for Google storage
2018-03-16 08:09:18 +00:00
gem 'google-api-client', '~> 0.19.8'
2013-05-01 09:41:37 +00:00
# for aws storage
2016-07-01 23:14:12 +00:00
gem 'unf', '~> 0.1.4'
2012-08-11 19:59:56 +00:00
# Seed data
gem 'seed-fu', '~> 2.3.7'
2012-08-11 19:59:56 +00:00
2015-04-29 19:02:41 +00:00
# Markdown and HTML processing
2018-04-02 11:26:24 +00:00
gem 'html-pipeline', '~> 2.7.1'
2017-05-19 03:05:05 +00:00
gem 'deckar01-task_list', '2.0.0'
2017-09-20 15:41:38 +00:00
gem 'gitlab-markup', '~> 1.6.2'
2017-02-08 18:41:27 +00:00
gem 'redcarpet', '~> 3.4'
2018-03-07 12:14:41 +00:00
gem 'commonmarker', '~> 0.17'
2017-02-08 18:41:27 +00:00
gem 'RedCloth', '~> 4.3.2'
2018-05-26 16:30:24 +00:00
gem 'rdoc', '~> 6.0'
2017-02-08 18:41:27 +00:00
gem 'org-ruby', '~> 0.9.12'
gem 'creole', '~> 0.5.0'
gem 'wikicloth', '0.8.1'
2018-03-27 15:08:03 +00:00
gem 'asciidoctor', '~> 1.5.6'
2018-03-27 15:09:43 +00:00
gem 'asciidoctor-plantuml', '0.0.8'
2018-04-17 17:02:43 +00:00
gem 'rouge', '~> 3.1'
gem 'truncato', '~> 0.7.9'
2017-04-28 14:53:42 +00:00
gem 'bootstrap_form', '~> 2.7.0'
gem 'nokogiri', '~> 1.8.2'
# Calendar rendering
gem 'icalendar'
2014-04-15 15:02:02 +00:00
# Diffs
gem 'diffy', '~> 3.1.0'
2014-04-15 15:02:02 +00:00
# Application server
2013-12-18 16:06:49 +00:00
group :unicorn do
gem 'unicorn', '~> 5.1.0'
gem 'unicorn-worker-killer', '~> 0.4.4'
2013-12-18 16:06:49 +00:00
end
2012-08-11 19:59:56 +00:00
2013-02-14 15:33:20 +00:00
# State machine
gem 'state_machines-activerecord', '~> 0.5.1'
2013-02-14 15:33:20 +00:00
2012-08-11 19:59:56 +00:00
# Issue tags
gem 'acts-as-taggable-on', '~> 5.0'
2012-08-11 19:59:56 +00:00
# Background jobs
2018-05-05 10:14:11 +00:00
gem 'sidekiq', '~> 5.1'
gem 'sidekiq-cron', '~> 0.6.0'
2018-05-26 14:35:48 +00:00
gem 'redis-namespace', '~> 1.6.0'
gem 'sidekiq-limit_fetch', '~> 3.4', require: false
2012-08-11 19:59:56 +00:00
2017-03-29 13:22:40 +00:00
# Cron Parser
gem 'rufus-scheduler', '~> 3.4'
2017-03-29 13:22:40 +00:00
2012-08-11 19:59:56 +00:00
# HTTP requests
2016-07-01 23:14:12 +00:00
gem 'httparty', '~> 0.13.3'
2012-08-11 19:59:56 +00:00
# Colored output to console
gem 'rainbow', '~> 2.2'
2012-08-11 19:59:56 +00:00
# Progress bar
gem 'ruby-progressbar'
2012-11-18 20:51:49 +00:00
# GitLab settings
2015-08-26 01:42:46 +00:00
gem 'settingslogic', '~> 2.0.9'
2011-11-04 07:42:36 +00:00
# Linear-time regex library for untrusted regular expressions
gem 're2', '~> 1.1.1'
2012-08-11 19:59:56 +00:00
# Misc
2015-08-26 01:42:46 +00:00
gem 'version_sorter', '~> 2.1.0'
2012-08-11 19:59:56 +00:00
2018-05-02 08:08:16 +00:00
# User agent parsing
gem 'device_detector'
# Cache
gem 'redis-rails', '~> 5.0.2'
# Redis
gem 'redis', '~> 3.2'
gem 'connection_pool', '~> 2.0'
2013-05-23 18:10:32 +00:00
# HipChat integration
2015-03-30 22:53:24 +00:00
gem 'hipchat', '~> 1.5.0'
2013-05-23 18:10:32 +00:00
2016-01-14 14:20:23 +00:00
# JIRA integration
gem 'jira-ruby', '~> 1.4'
2016-01-14 14:20:23 +00:00
# Flowdock integration
2016-07-01 23:14:12 +00:00
gem 'gitlab-flowdock-git-hook', '~> 1.0.1'
# Gemnasium integration
2016-07-01 23:14:12 +00:00
gem 'gemnasium-gitlab-service', '~> 0.2'
2014-03-18 17:27:03 +00:00
# Slack integration
2016-11-30 14:51:48 +00:00
gem 'slack-notifier', '~> 1.5.1'
2014-03-18 17:27:03 +00:00
# Asana integration
2017-04-12 01:29:30 +00:00
gem 'asana', '~> 0.6.0'
2015-08-04 22:21:12 +00:00
# FogBugz integration
2015-09-15 20:09:32 +00:00
gem 'ruby-fogbugz', '~> 0.2.1'
2015-08-04 22:21:12 +00:00
# Kubernetes integration
2018-05-29 10:38:36 +00:00
gem 'kubeclient', '~> 3.1.0'
2013-07-10 10:48:03 +00:00
# Sanitize user input
2016-07-01 23:14:12 +00:00
gem 'sanitize', '~> 2.0'
gem 'babosa', '~> 1.0.2'
2013-07-10 10:48:03 +00:00
# Sanitizes SVG input
gem 'loofah', '~> 2.2'
# Working with license
2018-03-13 12:51:17 +00:00
gem 'licensee', '~> 8.9'
2013-09-24 18:13:25 +00:00
# Protect against bruteforcing
gem 'rack-attack', '~> 4.4.1'
2013-09-24 18:13:25 +00:00
# Ace editor
gem 'ace-rails-ap', '~> 4.1.0'
# Keyboard shortcuts
2015-08-26 01:42:46 +00:00
gem 'mousetrap-rails', '~> 1.4.6'
2014-08-21 08:14:31 +00:00
# Detect and convert string character encoding
2017-08-16 14:25:00 +00:00
gem 'charlock_holmes', '~> 0.7.5'
# Faster blank
gem 'fast_blank'
# Parse time & duration
gem 'chronic', '~> 0.10.2'
2016-05-18 20:21:51 +00:00
gem 'chronic_duration', '~> 0.10.6'
2017-04-04 17:47:12 +00:00
gem 'webpack-rails', '~> 0.9.10'
gem 'rack-proxy', '~> 0.6.0'
gem 'sass-rails', '~> 5.0.6'
2016-07-01 23:14:12 +00:00
gem 'uglifier', '~> 2.7.2'
gem 'addressable', '~> 2.5.2'
gem 'font-awesome-rails', '~> 4.7'
gem 'gemojione', '~> 3.3'
2018-05-05 09:02:40 +00:00
gem 'gon', '~> 6.2'
gem 'jquery-atwho-rails', '~> 1.3.2'
2017-02-08 18:41:27 +00:00
gem 'request_store', '~> 1.3'
gem 'select2-rails', '~> 3.5.9'
gem 'virtus', '~> 1.0.1'
gem 'base32', '~> 0.3.0'
2011-10-08 21:36:38 +00:00
# Sentry integration
gem 'sentry-raven', '~> 2.7'
gem 'premailer-rails', '~> 1.9.7'
2017-04-13 03:41:46 +00:00
# I18n
gem 'ruby_parser', '~> 3.8', require: false
2018-03-14 22:50:16 +00:00
gem 'rails-i18n', gem_versions['rails-i18n']
2017-04-13 03:41:46 +00:00
gem 'gettext_i18n_rails', '~> 1.8.0'
gem 'gettext_i18n_rails_js', '~> 1.3'
2017-04-13 03:41:46 +00:00
gem 'gettext', '~> 3.2.2', require: false, group: :development
gem 'batch-loader', '~> 1.2.1'
# Perf bar
gem 'peek', '~> 1.0.1'
gem 'peek-gc', '~> 0.0.2'
gem 'peek-mysql2', '~> 1.1.0', group: :mysql
gem 'peek-pg', '~> 1.3.0', group: :postgres
gem 'peek-rblineprof', '~> 0.2.0'
gem 'peek-redis', '~> 1.2.0'
gem 'peek-sidekiq', '~> 1.0.3'
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
# Metrics
group :metrics do
gem 'allocations', '~> 1.0', require: false, platform: :mri
gem 'method_source', '~> 0.8', require: false
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
gem 'influxdb', '~> 0.2', require: false
# Prometheus
gem 'prometheus-client-mmap', '~> 0.9.3'
2017-07-04 15:28:34 +00:00
gem 'raindrops', '~> 0.18'
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
end
2011-10-27 19:37:17 +00:00
group :development do
2018-03-12 14:54:40 +00:00
gem 'foreman', '~> 0.84.0'
2018-04-01 14:44:18 +00:00
gem 'brakeman', '~> 4.2', require: false
2015-08-26 01:42:46 +00:00
gem 'letter_opener_web', '~> 1.3.0'
gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
2013-10-01 12:15:14 +00:00
# Better errors handler
2017-03-25 16:19:22 +00:00
gem 'better_errors', '~> 2.1.0'
2015-08-26 01:42:46 +00:00
gem 'binding_of_caller', '~> 0.7.2'
# thin instead webrick
gem 'thin', '~> 1.7.0'
2011-10-08 21:36:38 +00:00
end
group :development, :test do
gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET']
gem 'pry-byebug', '~> 3.4.1', platform: :mri
gem 'pry-rails', '~> 0.3.4'
2015-06-17 22:05:48 +00:00
gem 'awesome_print', require: false
2017-08-03 20:38:29 +00:00
gem 'fuubar', '~> 2.2.0'
2015-08-26 01:42:46 +00:00
2017-02-08 18:41:27 +00:00
gem 'database_cleaner', '~> 1.5.0'
gem 'factory_bot_rails', '~> 4.8.2'
2017-08-03 20:38:29 +00:00
gem 'rspec-rails', '~> 3.6.0'
2017-02-08 18:41:27 +00:00
gem 'rspec-retry', '~> 0.4.5'
gem 'rspec_profiling', '~> 0.0.5'
2017-04-26 14:46:26 +00:00
gem 'rspec-set', '~> 0.1.3'
gem 'rspec-parameterized', require: false
2012-09-10 06:26:35 +00:00
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
2015-08-26 01:42:46 +00:00
gem 'minitest', '~> 5.7.0'
2013-04-04 07:55:43 +00:00
# Generate Fake data
gem 'ffaker', '~> 2.4'
2013-04-04 07:55:43 +00:00
gem 'capybara', '~> 2.15'
2015-06-17 22:05:48 +00:00
gem 'capybara-screenshot', '~> 1.0.0'
2018-06-03 15:15:58 +00:00
gem 'selenium-webdriver', '~> 3.12'
2013-03-26 09:13:30 +00:00
2017-03-25 16:58:11 +00:00
gem 'spring', '~> 2.0.0'
2017-02-08 18:41:27 +00:00
gem 'spring-commands-rspec', '~> 1.0.4'
2015-08-26 01:42:46 +00:00
gem 'gitlab-styles', '~> 2.3', require: false
# Pin these dependencies, otherwise a new rule could break the CI pipelines
gem 'rubocop', '~> 0.52.1'
gem 'rubocop-rspec', '~> 1.22.1'
2018-01-07 23:47:31 +00:00
gem 'scss_lint', '~> 0.56.0', require: false
2017-08-07 09:08:15 +00:00
gem 'haml_lint', '~> 0.26.0', require: false
2017-03-25 16:57:22 +00:00
gem 'simplecov', '~> 0.14.0', require: false
gem 'flay', '~> 2.10.0', require: false
gem 'bundler-audit', '~> 0.5.0', require: false
gem 'benchmark-ips', '~> 2.3.0', require: false
2017-11-16 14:14:29 +00:00
gem 'license_finder', '~> 3.1', require: false
2018-03-13 22:55:08 +00:00
gem 'knapsack', '~> 1.16'
2018-03-14 22:50:16 +00:00
gem 'activerecord_sane_schema_dumper', gem_versions['activerecord_sane_schema_dumper']
gem 'stackprof', '~> 0.2.10', require: false
2017-07-20 15:32:17 +00:00
gem 'simple_po_parser', '~> 1.1.2', require: false
gem 'timecop', '~> 0.8.0'
2011-10-08 21:36:38 +00:00
end
group :test do
gem 'shoulda-matchers', '~> 3.1.2', require: false
2018-05-26 14:21:20 +00:00
gem 'email_spec', '~> 2.2.0'
gem 'json-schema', '~> 2.8.0'
gem 'webmock', '~> 2.3.2'
gem 'rails-controller-testing' if rails5? # Rails5 only gem.
gem 'test_after_commit', '~> 1.1' unless rails5? # Remove this gem when migrated to rails 5.0. It's been integrated to rails 5.0.
gem 'sham_rack', '~> 1.3.6'
gem 'concurrent-ruby', '~> 1.0.5'
gem 'test-prof', '~> 0.2.5'
2011-10-08 21:36:38 +00:00
end
2018-06-04 02:23:18 +00:00
gem 'octokit', '~> 4.9'
2015-08-18 22:46:36 +00:00
gem 'mail_room', '~> 0.9.1'
2015-08-19 00:02:26 +00:00
gem 'email_reply_trimmer', '~> 0.1'
gem 'html2text'
2015-08-26 01:42:46 +00:00
2018-03-13 06:18:40 +00:00
gem 'ruby-prof', '~> 0.17.0'
2015-08-26 01:42:46 +00:00
# OAuth
gem 'oauth2', '~> 1.4'
2015-08-26 01:42:46 +00:00
# Health check
2017-03-03 18:44:08 +00:00
gem 'health_check', '~> 2.6.0'
# System information
gem 'vmstat', '~> 2.3.0'
gem 'sys-filesystem', '~> 1.1.6'
# SSH host key support
gem 'net-ssh', '~> 4.2.0'
gem 'sshkey', '~> 1.9.0'
# Required for ED25519 SSH host key support
group :ed25519 do
gem 'rbnacl-libsodium'
2017-08-22 13:36:17 +00:00
gem 'rbnacl', '~> 4.0'
gem 'bcrypt_pbkdf', '~> 1.0'
end
# Gitaly GRPC client
gem 'gitaly-proto', '~> 0.100.0', require: 'gitaly'
2018-04-30 09:35:44 +00:00
gem 'grpc', '~> 1.11.0'
2018-02-06 16:58:04 +00:00
# Locked until https://github.com/google/protobuf/issues/4210 is closed
gem 'google-protobuf', '= 3.5.1'
gem 'toml-rb', '~> 1.0.0', require: false
2017-05-31 21:06:01 +00:00
# Feature toggles
2018-03-13 13:51:30 +00:00
gem 'flipper', '~> 0.13.0'
gem 'flipper-active_record', '~> 0.13.0'
gem 'flipper-active_support_cache_store', '~> 0.13.0'
# Structured logging
gem 'lograge', '~> 0.5'
gem 'grape_logging', '~> 1.7'
2017-12-08 17:04:48 +00:00
# Asset synchronization
2018-05-05 05:10:59 +00:00
gem 'asset_sync', '~> 2.4'