debian-mirror-gitlab/Gemfile

275 lines
5.9 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
source "https://rubygems.org"
2015-09-11 14:41:01 +05:30
gem 'rails', '4.1.11'
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
# Specify a sprockets version due to security issue
# See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY
gem 'sprockets', '~> 2.12.3'
2014-09-02 18:07:02 +05:30
# Default values for AR models
gem "default_value_for", "~> 3.0.0"
# Supported DBs
gem "mysql2", group: :mysql
gem "pg", group: :postgres
2015-09-11 14:41:01 +05:30
# Authentication libraries
2014-09-02 18:07:02 +05:30
gem "devise", '3.2.4'
gem "devise-async", '0.9.0'
2015-09-11 14:41:01 +05:30
gem 'omniauth', "~> 1.2.2"
2014-09-02 18:07:02 +05:30
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
2015-04-26 12:48:37 +05:30
gem 'omniauth-shibboleth'
2015-09-11 14:41:01 +05:30
gem 'omniauth-kerberos', group: :kerberos
2015-04-26 12:48:37 +05:30
gem 'omniauth-gitlab'
gem 'omniauth-bitbucket'
2015-09-11 14:41:01 +05:30
gem 'omniauth-saml', '~> 1.4.0'
2015-04-26 12:48:37 +05:30
gem 'doorkeeper', '2.1.3'
gem "rack-oauth2", "~> 1.0.5"
2015-09-11 14:41:01 +05:30
# Two-factor authentication
gem 'devise-two-factor'
gem 'rqrcode-rails3'
gem 'attr_encrypted', '1.3.4'
2015-04-26 12:48:37 +05:30
# Browser detection
2015-09-11 14:41:01 +05:30
gem "browser", '~> 0.8.0'
2014-09-02 18:07:02 +05:30
# Extracting information from a git repository
# Provide access to Gitlab::Git library
2015-09-11 14:41:01 +05:30
gem "gitlab_git", '~> 7.2.15'
2014-09-02 18:07:02 +05:30
# Ruby/Rack Git Smart-HTTP Server Handler
2015-09-11 14:41:01 +05:30
# 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-26 12:48:37 +05:30
gem 'gitlab-grack', '~> 2.0.2', require: 'grack'
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
2015-04-26 12:48:37 +05:30
gem 'gitlab_omniauth-ldap', '1.2.1', require: "omniauth-ldap"
2014-09-02 18:07:02 +05:30
# Git Wiki
2015-04-26 12:48:37 +05:30
gem 'gollum-lib', '~> 4.0.2'
2014-09-02 18:07:02 +05:30
# Language detection
2015-09-11 14:41:01 +05:30
# GitLab fork of linguist does not require pygments/python dependency.
# 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-04-26 12:48:37 +05:30
gem "gitlab-linguist", "~> 3.0.1", require: "linguist"
2014-09-02 18:07:02 +05:30
# API
gem "grape", "~> 0.6.1"
gem "grape-entity", "~> 0.4.2"
gem 'rack-cors', require: 'rack/cors'
# Format dates and times
# based on human-friendly examples
gem "stamp"
# Enumeration fields
gem 'enumerize'
# Pagination
gem "kaminari", "~> 0.15.1"
# HAML
gem "haml-rails"
# Files attachments
gem "carrierwave"
# Drag and Drop UI
gem 'dropzonejs-rails'
# for aws storage
2015-09-11 14:41:01 +05:30
gem "fog", "~> 1.25.0"
2015-04-26 12:48:37 +05:30
gem "unf"
2014-09-02 18:07:02 +05:30
# Authorization
gem "six"
# Seed data
gem "seed-fu"
2015-09-11 14:41:01 +05:30
# Markdown and HTML processing
gem 'html-pipeline', '~> 1.11.0'
gem 'task_list', '1.0.2', require: 'task_list/railtie'
gem 'github-markup'
gem 'redcarpet', '~> 3.3.2'
2014-09-02 18:07:02 +05:30
gem 'RedCloth'
2015-09-11 14:41:01 +05:30
gem 'rdoc', '~>3.6'
gem 'org-ruby', '= 0.9.12'
gem 'creole', '~>0.3.6'
gem 'wikicloth', '=0.8.1'
gem 'asciidoctor', '~> 1.5.2'
2014-09-02 18:07:02 +05:30
# Diffs
gem 'diffy', '~> 3.0.3'
# Application server
group :unicorn do
gem "unicorn", '~> 4.6.3'
gem 'unicorn-worker-killer'
end
# State machine
gem "state_machine"
# Issue tags
2015-04-26 12:48:37 +05:30
gem 'acts-as-taggable-on', '~> 3.4'
2014-09-02 18:07:02 +05:30
# Background jobs
gem 'slim'
gem 'sinatra', require: nil
2015-04-26 12:48:37 +05:30
gem 'sidekiq', '~> 3.3'
gem 'sidetiq', '0.6.3'
2014-09-02 18:07:02 +05:30
# HTTP requests
gem "httparty"
# Colored output to console
gem "colored"
# GitLab settings
gem 'settingslogic'
# Misc
gem "foreman"
gem 'version_sorter'
# Cache
gem "redis-rails"
# Campfire integration
gem 'tinder', '~> 1.9.2'
# HipChat integration
2015-09-11 14:41:01 +05:30
gem 'hipchat', '~> 1.5.0'
2014-09-02 18:07:02 +05:30
# Flowdock integration
2015-09-11 14:41:01 +05:30
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
2014-09-02 18:07:02 +05:30
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"
# Slack integration
2015-04-26 12:48:37 +05:30
gem "slack-notifier", "~> 1.0.0"
# Asana integration
gem 'asana', '~> 0.0.6'
2014-09-02 18:07:02 +05:30
# d3
2015-09-11 14:41:01 +05:30
gem 'd3_rails', '~> 3.5.5'
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
#cal-heatmap
gem "cal-heatmap-rails", "~> 0.0.1"
2014-09-02 18:07:02 +05:30
# underscore-rails
gem "underscore-rails", "~> 1.4.4"
# Sanitize user input
gem "sanitize", '~> 2.0'
# Protect against bruteforcing
2015-09-11 14:41:01 +05:30
gem "rack-attack", '~> 4.3.0'
2014-09-02 18:07:02 +05:30
# Ace editor
gem 'ace-rails-ap'
2015-04-26 12:48:37 +05:30
# Keyboard shortcuts
gem 'mousetrap-rails'
# Detect and convert string character encoding
gem 'charlock_holmes'
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
gem "sass-rails", '~> 4.0.5'
2014-09-02 18:07:02 +05:30
gem "coffee-rails"
gem "uglifier"
2015-09-11 14:41:01 +05:30
gem 'turbolinks', '~> 2.5.0'
2014-09-02 18:07:02 +05:30
gem 'jquery-turbolinks'
2015-09-11 14:41:01 +05:30
gem 'addressable'
gem 'bootstrap-sass', '~> 3.0'
gem 'font-awesome-rails', '~> 4.2'
gem 'gitlab_emoji', '~> 0.1'
gem 'gon', '~> 5.0.0'
gem 'jquery-atwho-rails', '~> 1.0.0'
gem 'jquery-rails', '3.1.3'
gem 'jquery-scrollto-rails'
gem 'jquery-ui-rails'
2014-09-02 18:07:02 +05:30
gem 'nprogress-rails'
2015-09-11 14:41:01 +05:30
gem 'raphael-rails', '~> 2.1.2'
2014-09-02 18:07:02 +05:30
gem 'request_store'
2015-09-11 14:41:01 +05:30
gem 'select2-rails', '~> 3.5.9'
gem 'virtus'
2014-09-02 18:07:02 +05:30
group :development do
2015-04-26 12:48:37 +05:30
gem 'brakeman', require: false
2014-09-02 18:07:02 +05:30
gem "annotate", "~> 2.6.0.beta2"
gem "letter_opener"
gem 'quiet_assets', '~> 1.0.1'
gem 'rack-mini-profiler', require: false
2015-09-11 14:41:01 +05:30
gem 'rerun', '~> 0.10.0'
2014-09-02 18:07:02 +05:30
# Better errors handler
gem 'better_errors'
gem 'binding_of_caller'
# Docs generator
gem "sdoc"
# thin instead webrick
gem 'thin'
end
group :development, :test do
2015-09-11 14:41:01 +05:30
gem 'awesome_print'
gem 'byebug', platform: :mri
gem 'fuubar', '~> 2.0.0'
gem 'pry-rails'
gem 'coveralls', '~> 0.8.2', require: false
gem 'database_cleaner', '~> 1.4.0'
2014-09-02 18:07:02 +05:30
gem 'factory_girl_rails'
2015-09-11 14:41:01 +05:30
gem 'rspec-rails', '~> 3.3.0'
gem 'rubocop', '0.28.0', require: false
gem 'spinach-rails'
2014-09-02 18:07:02 +05:30
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
gem 'minitest', '~> 5.3.0'
# Generate Fake data
2015-09-11 14:41:01 +05:30
gem 'ffaker', '~> 2.0.0'
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
gem 'capybara', '~> 2.4.0'
gem 'capybara-screenshot', '~> 1.0.0'
gem 'poltergeist', '~> 1.6.0'
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
gem 'teaspoon', '~> 1.0.0'
gem 'teaspoon-jasmine'
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
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'
2014-09-02 18:07:02 +05:30
end
group :test do
2015-09-11 14:41:01 +05:30
gem 'simplecov', require: false
gem 'shoulda-matchers', '~> 2.8.0', require: false
gem 'email_spec', '~> 1.6.0'
gem 'webmock', '~> 1.21.0'
2014-09-02 18:07:02 +05:30
gem 'test_after_commit'
end
group :production do
gem "gitlab_meta", '7.0'
end
2015-04-26 12:48:37 +05:30
gem "newrelic_rpm"
gem 'octokit', '3.7.0'