2013-03-06 11:55:11 -05:00
|
|
|
source "https://rubygems.org"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2014-05-29 08:13:01 -04:00
|
|
|
gem "rails", "~> 4.1.0"
|
2013-12-05 09:26:11 -05:00
|
|
|
|
2014-02-26 03:41:44 -05:00
|
|
|
# Default values for AR models
|
|
|
|
gem "default_value_for", "~> 3.0.0"
|
|
|
|
|
2012-06-20 06:45:26 -04:00
|
|
|
# Supported DBs
|
2012-10-31 07:53:38 -04:00
|
|
|
gem "mysql2", group: :mysql
|
|
|
|
gem "pg", group: :postgres
|
2012-06-20 06:45:26 -04:00
|
|
|
|
|
|
|
# Auth
|
2014-07-09 07:17:45 -04:00
|
|
|
gem "devise", '3.2.4'
|
|
|
|
gem "devise-async", '0.9.0'
|
2015-04-24 11:03:18 -04:00
|
|
|
gem 'omniauth', "~> 1.2.2"
|
2012-08-03 11:27:39 -04:00
|
|
|
gem 'omniauth-google-oauth2'
|
|
|
|
gem 'omniauth-twitter'
|
|
|
|
gem 'omniauth-github'
|
2014-08-28 04:57:30 -04:00
|
|
|
gem 'omniauth-shibboleth'
|
2015-02-14 14:50:08 -05:00
|
|
|
gem 'omniauth-kerberos', group: :kerberos
|
2015-01-27 18:37:19 -05:00
|
|
|
gem 'omniauth-gitlab'
|
2015-02-17 10:59:50 -05:00
|
|
|
gem 'omniauth-bitbucket'
|
2015-05-27 10:37:22 -04:00
|
|
|
gem 'omniauth-saml'
|
2015-03-20 08:47:19 -04:00
|
|
|
gem 'doorkeeper', '2.1.3'
|
2014-12-19 09:15:29 -05:00
|
|
|
gem "rack-oauth2", "~> 1.0.5"
|
2012-06-20 06:45:26 -04:00
|
|
|
|
2015-03-27 18:35:26 -04:00
|
|
|
# Two-factor authentication
|
|
|
|
gem 'devise-two-factor'
|
|
|
|
gem 'rqrcode-rails3'
|
2015-05-12 03:41:24 -04:00
|
|
|
gem 'attr_encrypted', '1.3.4'
|
2015-03-27 18:35:26 -04:00
|
|
|
|
2014-12-15 05:11:38 -05:00
|
|
|
# Browser detection
|
2015-06-09 18:27:40 -04:00
|
|
|
gem "browser", '~> 0.8.0'
|
2014-12-15 05:11:38 -05:00
|
|
|
|
2013-03-03 15:08:04 -05:00
|
|
|
# Extracting information from a git repository
|
2013-05-14 06:07:39 -04:00
|
|
|
# Provide access to Gitlab::Git library
|
2015-06-05 09:01:38 -04:00
|
|
|
gem "gitlab_git", '~> 7.2.3'
|
2013-04-27 16:50:17 -04:00
|
|
|
|
2013-03-03 15:08:04 -05:00
|
|
|
# Ruby/Rack Git Smart-HTTP Server Handler
|
2015-06-01 06:59:02 -04:00
|
|
|
# GitLab fork with a lot of changes (improved thread-safety, better memory usage etc)
|
|
|
|
# For full list of changes see https://github.com/SaitoWu/grack/compare/master...gitlabhq:master
|
2015-04-22 05:19:40 -04:00
|
|
|
gem 'gitlab-grack', '~> 2.0.2', require: 'grack'
|
2013-03-03 15:08:04 -05:00
|
|
|
|
2012-12-30 08:15:56 -05:00
|
|
|
# LDAP Auth
|
2015-06-01 06:59:02 -04:00
|
|
|
# GitLab fork with several improvements to original library. For full list of changes
|
|
|
|
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
|
2015-03-17 12:15:39 -04:00
|
|
|
gem 'gitlab_omniauth-ldap', '1.2.1', require: "omniauth-ldap"
|
2012-12-30 08:15:56 -05:00
|
|
|
|
2013-05-13 15:54:23 -04:00
|
|
|
# Git Wiki
|
2015-03-20 09:15:56 -04:00
|
|
|
gem 'gollum-lib', '~> 4.0.2'
|
2013-05-13 15:54:23 -04:00
|
|
|
|
2012-10-02 09:29:03 -04:00
|
|
|
# Language detection
|
2015-06-01 06:59:02 -04:00
|
|
|
# GitLab fork of linguist does not require pygments/python dependency.
|
2015-06-01 06:37:08 -04:00
|
|
|
# New version of original gem also dropped pygments support but it has strict
|
|
|
|
# dependency to unstable rugged version. We have internal issue for replacing
|
|
|
|
# fork with original gem when we meet on same rugged version - https://dev.gitlab.org/gitlab/gitlabhq/issues/2052.
|
2015-02-24 13:46:52 -05:00
|
|
|
gem "gitlab-linguist", "~> 3.0.1", require: "linguist"
|
2012-10-02 09:29:03 -04:00
|
|
|
|
2012-08-11 15:59:56 -04:00
|
|
|
# API
|
2013-12-09 14:50:36 -05:00
|
|
|
gem "grape", "~> 0.6.1"
|
2014-04-08 09:02:53 -04:00
|
|
|
gem "grape-entity", "~> 0.4.2"
|
2013-12-05 03:29:45 -05:00
|
|
|
gem 'rack-cors', require: 'rack/cors'
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# Format dates and times
|
|
|
|
# based on human-friendly examples
|
2011-11-28 04:34:11 -05:00
|
|
|
gem "stamp"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
2013-02-08 07:47:24 -05:00
|
|
|
# Enumeration fields
|
|
|
|
gem 'enumerize'
|
|
|
|
|
2012-08-11 15:59:56 -04:00
|
|
|
# Pagination
|
2014-01-20 07:00:50 -05:00
|
|
|
gem "kaminari", "~> 0.15.1"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# HAML
|
2013-03-01 08:09:11 -05:00
|
|
|
gem "haml-rails"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# Files attachments
|
2013-03-01 08:09:11 -05:00
|
|
|
gem "carrierwave"
|
2013-07-08 02:47:31 -04:00
|
|
|
|
2014-05-23 04:22:00 -04:00
|
|
|
# Drag and Drop UI
|
|
|
|
gem 'dropzonejs-rails'
|
|
|
|
|
2013-05-01 05:41:37 -04:00
|
|
|
# for aws storage
|
2015-06-09 11:56:37 -04:00
|
|
|
gem "fog", "~> 1.25.0"
|
2014-09-29 09:02:39 -04:00
|
|
|
gem "unf"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# Authorization
|
2011-11-28 04:34:11 -05:00
|
|
|
gem "six"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# Seed data
|
2012-02-11 13:34:25 -05:00
|
|
|
gem "seed-fu"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
2015-04-29 15:02:41 -04:00
|
|
|
# Markdown and HTML processing
|
2015-04-16 16:41:51 -04:00
|
|
|
gem 'html-pipeline', '~> 1.11.0'
|
2015-05-18 15:44:45 -04:00
|
|
|
gem 'task_list', '1.0.2', require: 'task_list/railtie'
|
2015-04-29 15:02:41 -04:00
|
|
|
gem 'github-markup'
|
|
|
|
gem 'redcarpet', '~> 3.2.3'
|
2014-07-28 05:47:27 -04:00
|
|
|
gem 'RedCloth'
|
2015-04-29 15:02:41 -04:00
|
|
|
gem 'rdoc', '~>3.6'
|
|
|
|
gem 'org-ruby', '= 0.9.12'
|
|
|
|
gem 'creole', '~>0.3.6'
|
|
|
|
gem 'wikicloth', '=0.8.1'
|
2015-05-12 18:54:13 -04:00
|
|
|
gem 'asciidoctor', '~> 1.5.2'
|
2012-08-11 15:59:56 -04:00
|
|
|
|
2014-04-15 11:02:02 -04:00
|
|
|
# Diffs
|
|
|
|
gem 'diffy', '~> 3.0.3'
|
|
|
|
|
2013-08-19 15:54:12 -04:00
|
|
|
# Application server
|
2013-12-18 11:06:49 -05:00
|
|
|
group :unicorn do
|
|
|
|
gem "unicorn", '~> 4.6.3'
|
|
|
|
gem 'unicorn-worker-killer'
|
|
|
|
end
|
2012-08-11 15:59:56 -04:00
|
|
|
|
2013-02-14 10:33:20 -05:00
|
|
|
# State machine
|
|
|
|
gem "state_machine"
|
|
|
|
|
2012-08-11 15:59:56 -04:00
|
|
|
# Issue tags
|
2015-03-28 19:39:32 -04:00
|
|
|
gem 'acts-as-taggable-on', '~> 3.4'
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# Background jobs
|
2013-01-09 00:14:05 -05:00
|
|
|
gem 'slim'
|
2013-02-21 03:00:18 -05:00
|
|
|
gem 'sinatra', require: nil
|
2015-01-18 23:24:00 -05:00
|
|
|
gem 'sidekiq', '~> 3.3'
|
2015-03-21 11:34:33 -04:00
|
|
|
gem 'sidetiq', '0.6.3'
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# HTTP requests
|
2011-12-14 11:38:52 -05:00
|
|
|
gem "httparty"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
|
|
|
# Colored output to console
|
2012-02-29 15:38:24 -05:00
|
|
|
gem "colored"
|
2012-08-11 15:59:56 -04:00
|
|
|
|
2012-11-18 15:51:49 -05:00
|
|
|
# GitLab settings
|
2012-07-02 14:51:48 -04:00
|
|
|
gem 'settingslogic'
|
2011-11-04 03:42:36 -04:00
|
|
|
|
2012-08-11 15:59:56 -04:00
|
|
|
# Misc
|
|
|
|
gem "foreman"
|
2014-03-08 23:58:56 -05:00
|
|
|
gem 'version_sorter'
|
2012-08-11 15:59:56 -04:00
|
|
|
|
2013-03-06 10:30:48 -05:00
|
|
|
# Cache
|
|
|
|
gem "redis-rails"
|
|
|
|
|
2013-05-22 10:59:15 -04:00
|
|
|
# Campfire integration
|
|
|
|
gem 'tinder', '~> 1.9.2'
|
|
|
|
|
2013-05-23 14:10:32 -04:00
|
|
|
# HipChat integration
|
2015-03-30 18:53:24 -04:00
|
|
|
gem 'hipchat', '~> 1.5.0'
|
2013-05-23 14:10:32 -04:00
|
|
|
|
2013-08-19 05:11:36 -04:00
|
|
|
# Flowdock integration
|
2013-10-03 09:29:13 -04:00
|
|
|
gem "gitlab-flowdock-git-hook", "~> 0.4.2"
|
2013-08-19 05:11:36 -04:00
|
|
|
|
2014-02-18 18:09:16 -05:00
|
|
|
# Gemnasium integration
|
|
|
|
gem "gemnasium-gitlab-service", "~> 0.2"
|
|
|
|
|
2014-03-18 13:27:03 -04:00
|
|
|
# Slack integration
|
2014-10-23 14:47:28 -04:00
|
|
|
gem "slack-notifier", "~> 1.0.0"
|
2014-03-18 13:27:03 -04:00
|
|
|
|
2014-07-29 11:41:55 -04:00
|
|
|
# Asana integration
|
|
|
|
gem 'asana', '~> 0.0.6'
|
|
|
|
|
2013-05-09 01:00:56 -04:00
|
|
|
# d3
|
2015-04-19 15:43:46 -04:00
|
|
|
gem 'd3_rails', '~> 3.5.5'
|
2013-05-09 01:00:56 -04:00
|
|
|
|
2015-01-28 16:18:22 -05:00
|
|
|
#cal-heatmap
|
|
|
|
gem "cal-heatmap-rails", "~> 0.0.1"
|
|
|
|
|
2013-05-09 01:00:56 -04:00
|
|
|
# underscore-rails
|
|
|
|
gem "underscore-rails", "~> 1.4.4"
|
|
|
|
|
2013-07-10 06:48:03 -04:00
|
|
|
# Sanitize user input
|
2014-04-08 04:20:39 -04:00
|
|
|
gem "sanitize", '~> 2.0'
|
2013-07-10 06:48:03 -04:00
|
|
|
|
2013-09-24 14:13:25 -04:00
|
|
|
# Protect against bruteforcing
|
2015-05-22 16:25:03 -04:00
|
|
|
gem "rack-attack", '~> 4.3.0'
|
2013-09-24 14:13:25 -04:00
|
|
|
|
2014-02-10 09:18:46 -05:00
|
|
|
# Ace editor
|
|
|
|
gem 'ace-rails-ap'
|
|
|
|
|
2014-09-24 06:26:53 -04:00
|
|
|
# Keyboard shortcuts
|
2014-08-21 04:14:31 -04:00
|
|
|
gem 'mousetrap-rails'
|
|
|
|
|
2015-03-15 10:42:31 -04:00
|
|
|
# Detect and convert string character encoding
|
|
|
|
gem 'charlock_holmes'
|
|
|
|
|
2014-05-08 09:00:20 -04:00
|
|
|
gem "sass-rails", '~> 4.0.2'
|
2013-12-06 10:04:50 -05:00
|
|
|
gem "coffee-rails"
|
|
|
|
gem "uglifier"
|
2015-05-29 00:05:14 -04:00
|
|
|
gem 'turbolinks', '~> 2.5.0'
|
2013-12-06 10:04:50 -05:00
|
|
|
gem 'jquery-turbolinks'
|
|
|
|
|
2015-05-23 00:33:46 -04:00
|
|
|
gem 'addressable'
|
|
|
|
gem 'bootstrap-sass', '~> 3.0'
|
|
|
|
gem 'font-awesome-rails', '~> 4.2'
|
|
|
|
gem 'gitlab_emoji', '~> 0.1'
|
|
|
|
gem 'gon', '~> 5.0.0'
|
2015-04-19 15:49:38 -04:00
|
|
|
gem 'jquery-atwho-rails', '~> 1.0.0'
|
2015-05-23 00:33:46 -04:00
|
|
|
gem 'jquery-rails', '3.1.2'
|
|
|
|
gem 'jquery-scrollto-rails'
|
|
|
|
gem 'jquery-ui-rails'
|
2014-03-19 06:59:23 -04:00
|
|
|
gem 'nprogress-rails'
|
2015-05-23 00:33:46 -04:00
|
|
|
gem 'raphael-rails', '~> 2.1.2'
|
2014-06-14 06:05:25 -04:00
|
|
|
gem 'request_store'
|
2015-05-23 00:33:46 -04:00
|
|
|
gem 'select2-rails'
|
|
|
|
gem 'virtus'
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-27 15:37:17 -04:00
|
|
|
group :development do
|
2015-03-02 20:28:47 -05:00
|
|
|
gem 'brakeman', require: false
|
2013-10-01 08:15:14 -04:00
|
|
|
gem "annotate", "~> 2.6.0.beta2"
|
2012-11-01 16:45:31 -04:00
|
|
|
gem "letter_opener"
|
2012-11-18 15:51:49 -05:00
|
|
|
gem 'quiet_assets', '~> 1.0.1'
|
2014-02-26 04:50:02 -05:00
|
|
|
gem 'rack-mini-profiler', require: false
|
2015-01-29 06:37:17 -05:00
|
|
|
gem 'rerun', '~> 0.10.0'
|
2013-10-01 08:15:14 -04:00
|
|
|
|
2012-12-25 17:42:53 -05:00
|
|
|
# Better errors handler
|
|
|
|
gem 'better_errors'
|
|
|
|
gem 'binding_of_caller'
|
2012-12-30 07:43:00 -05:00
|
|
|
|
|
|
|
# Docs generator
|
|
|
|
gem "sdoc"
|
2013-01-19 06:56:55 -05:00
|
|
|
|
|
|
|
# thin instead webrick
|
|
|
|
gem 'thin'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
group :development, :test do
|
2013-03-10 14:26:27 -04:00
|
|
|
gem 'coveralls', require: false
|
2015-02-02 21:54:27 -05:00
|
|
|
gem 'rubocop', '0.28.0', require: false
|
2013-03-27 16:21:32 -04:00
|
|
|
gem 'spinach-rails'
|
2015-02-12 10:48:53 -05:00
|
|
|
gem "rspec-rails", '2.99'
|
2015-04-25 14:10:09 -04:00
|
|
|
gem 'capybara', '~> 2.2.1'
|
|
|
|
gem 'capybara-screenshot', '~> 1.0.0'
|
2015-01-29 03:30:21 -05:00
|
|
|
gem "pry-rails"
|
2011-11-28 04:34:11 -05:00
|
|
|
gem "awesome_print"
|
2013-02-28 14:02:41 -05:00
|
|
|
gem "database_cleaner"
|
2012-08-28 01:28:09 -04:00
|
|
|
gem 'factory_girl_rails'
|
2012-09-10 02:26:35 -04:00
|
|
|
|
2013-05-06 12:53:19 -04:00
|
|
|
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
|
2014-05-29 08:13:01 -04:00
|
|
|
gem 'minitest', '~> 5.3.0'
|
2013-05-09 04:02:48 -04:00
|
|
|
|
2013-04-04 03:55:43 -04:00
|
|
|
# Generate Fake data
|
2015-05-20 19:22:00 -04:00
|
|
|
gem 'ffaker', '~> 2.0.0'
|
2013-04-04 03:55:43 -04:00
|
|
|
|
2012-11-16 05:27:39 -05:00
|
|
|
# PhantomJS driver for Capybara
|
2015-03-19 21:56:05 -04:00
|
|
|
gem 'poltergeist', '~> 1.5.1'
|
2013-03-26 05:13:30 -04:00
|
|
|
|
2015-05-06 16:50:47 -04:00
|
|
|
gem 'teaspoon', '~> 1.0.0'
|
|
|
|
gem 'teaspoon-jasmine'
|
2014-02-15 14:46:15 -05:00
|
|
|
|
2015-05-06 16:50:47 -04:00
|
|
|
gem 'spring', '~> 1.3.1'
|
|
|
|
gem 'spring-commands-rspec', '~> 1.0.0'
|
|
|
|
gem 'spring-commands-spinach', '~> 1.0.0'
|
|
|
|
gem 'spring-commands-teaspoon', '~> 0.0.2'
|
2015-04-22 05:19:40 -04:00
|
|
|
|
2015-04-03 12:02:16 -04:00
|
|
|
gem "byebug"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
2015-05-18 16:39:15 -04:00
|
|
|
gem 'simplecov', require: false
|
2015-06-10 01:38:36 -04:00
|
|
|
gem 'shoulda-matchers', '~> 2.8.0', require: false
|
2012-05-14 14:05:32 -04:00
|
|
|
gem 'email_spec'
|
2015-05-18 16:39:15 -04:00
|
|
|
gem 'webmock', '~> 1.21.0'
|
2012-09-03 14:46:17 -04:00
|
|
|
gem 'test_after_commit'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-08-23 19:21:20 -04:00
|
|
|
|
|
|
|
group :production do
|
2014-06-16 10:25:45 -04:00
|
|
|
gem "gitlab_meta", '7.0'
|
2014-04-24 07:23:17 -04:00
|
|
|
end
|
2014-09-12 12:46:20 -04:00
|
|
|
|
|
|
|
gem "newrelic_rpm"
|
2014-12-31 08:07:48 -05:00
|
|
|
|
|
|
|
gem 'octokit', '3.7.0'
|
2015-05-23 23:34:03 -04:00
|
|
|
gem "rugments", "~> 1.0.0.beta7"
|