gitlab-org--gitlab-foss/Gemfile

222 lines
4.1 KiB
Ruby
Raw Normal View History

2013-03-06 16:55:11 +00:00
source "https://rubygems.org"
2011-10-08 21:36:38 +00:00
def darwin_only(require_as)
RUBY_PLATFORM.include?('darwin') && require_as
end
def linux_only(require_as)
RUBY_PLATFORM.include?('linux') && require_as
end
gem "rails", "~> 4.0.0"
gem "protected_attributes"
gem 'rails-observers'
gem 'actionpack-page_caching'
gem 'actionpack-action_caching'
gem 'activerecord-deprecated_finders'
2011-10-08 21:36:38 +00:00
2012-06-20 10:45:26 +00:00
# Supported DBs
gem "mysql2", group: :mysql
gem "pg", group: :postgres
2012-06-20 10:45:26 +00:00
# Auth
gem "devise", '3.0.4'
gem "devise-async", '0.8.0'
gem 'omniauth', "~> 1.1.3"
2012-08-03 15:27:39 +00:00
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
2012-06-20 10:45:26 +00:00
2013-03-03 20:08:04 +00:00
# Extracting information from a git repository
2013-05-14 10:07:39 +00:00
# Provide access to Gitlab::Git library
gem "gitlab_git", "~> 4.0.0.pre"
2013-04-27 20:50:17 +00:00
2013-03-03 20:08:04 +00:00
# Ruby/Rack Git Smart-HTTP Server Handler
gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack'
2013-03-03 20:08:04 +00:00
# LDAP Auth
2013-06-13 07:07:06 +00:00
gem 'gitlab_omniauth-ldap', '1.0.3', require: "omniauth-ldap"
2012-10-02 13:29:03 +00:00
# Syntax highlighter
gem "gitlab-pygments.rb", '~> 0.5.4', require: 'pygments.rb'
2012-10-02 13:29:03 +00:00
# Git Wiki
gem "gitlab-gollum-lib", "~> 1.0.2", require: 'gollum-lib'
2012-10-02 13:29:03 +00:00
# Language detection
gem "gitlab-linguist", "~> 2.9.6", require: "linguist"
2012-10-02 13:29:03 +00:00
2012-08-11 19:59:56 +00:00
# API
gem "grape", "~> 0.4.1"
gem "grape-entity", "~> 0.3.0"
gem 'rack-cors', require: 'rack/cors'
2012-08-11 19:59:56 +00:00
# Format dates and times
# based on human-friendly examples
gem "stamp"
2012-08-11 19:59:56 +00:00
2013-02-08 12:47:24 +00:00
# Enumeration fields
gem 'enumerize'
2012-08-11 19:59:56 +00:00
# Pagination
2012-11-18 20:51:49 +00:00
gem "kaminari", "~> 0.14.1"
2012-08-11 19:59:56 +00:00
# HAML
2013-03-01 13:09:11 +00:00
gem "haml-rails"
2012-08-11 19:59:56 +00:00
# Files attachments
2013-03-01 13:09:11 +00:00
gem "carrierwave"
2013-07-08 06:47:31 +00:00
2013-05-01 09:41:37 +00:00
# for aws storage
2013-07-08 06:47:31 +00:00
gem "fog", "~> 1.3.1", group: :aws
2012-08-11 19:59:56 +00:00
# Authorization
gem "six"
2012-08-11 19:59:56 +00:00
# Seed data
2012-02-11 18:34:25 +00:00
gem "seed-fu"
2012-08-11 19:59:56 +00:00
# Markdown to HTML
2012-11-18 20:51:49 +00:00
gem "redcarpet", "~> 2.2.2"
2012-09-17 15:10:04 +00:00
gem "github-markup", "~> 0.7.4", require: 'github/markup'
2012-08-11 19:59:56 +00:00
# Asciidoc to HTML
gem "asciidoctor"
# Application server
2013-07-08 06:47:31 +00:00
gem "unicorn", '~> 4.6.3', group: :unicorn
2012-08-11 19:59:56 +00:00
2013-02-14 15:33:20 +00:00
# State machine
gem "state_machine"
2012-08-11 19:59:56 +00:00
# Issue tags
2013-05-01 10:29:29 +00:00
gem "acts-as-taggable-on"
2012-08-11 19:59:56 +00:00
# Background jobs
2013-01-09 05:14:05 +00:00
gem 'slim'
2013-02-21 08:00:18 +00:00
gem 'sinatra', require: nil
gem 'sidekiq'
2012-08-11 19:59:56 +00:00
# HTTP requests
gem "httparty"
2012-08-11 19:59:56 +00:00
# Colored output to console
gem "colored"
2012-08-11 19:59:56 +00:00
2012-11-18 20:51:49 +00:00
# GitLab settings
gem 'settingslogic'
2011-11-04 07:42:36 +00:00
2012-08-11 19:59:56 +00:00
# Misc
gem "foreman"
# Cache
gem "redis-rails"
# Campfire integration
gem 'tinder', '~> 1.9.2'
2013-05-23 18:10:32 +00:00
# HipChat integration
gem "hipchat", "~> 0.9.0"
# Flowdock integration
gem "gitlab-flowdock-git-hook", "~> 0.4.2"
# d3
gem "d3_rails", "~> 3.1.4"
# underscore-rails
gem "underscore-rails", "~> 1.4.4"
2013-07-10 10:48:03 +00:00
# Sanitize user input
gem "sanitize"
2013-09-24 18:13:25 +00:00
# Protect against bruteforcing
gem "rack-attack"
2011-10-08 21:36:38 +00:00
group :assets do
2013-05-01 10:29:29 +00:00
gem "sass-rails"
gem "coffee-rails"
gem "uglifier"
2012-05-29 12:22:26 +00:00
gem "therubyracer"
2013-04-29 07:10:45 +00:00
gem 'turbolinks'
gem 'jquery-turbolinks'
2012-06-22 09:00:09 +00:00
gem 'chosen-rails', "1.0.1"
2013-03-13 19:36:26 +00:00
gem 'select2-rails'
gem 'jquery-atwho-rails', "0.3.0"
2012-11-18 20:51:49 +00:00
gem "jquery-rails", "2.1.3"
gem "jquery-ui-rails", "2.0.2"
gem "modernizr", "2.6.2"
2013-08-31 22:04:22 +00:00
gem "raphael-rails", "~> 2.1.2"
gem 'bootstrap-sass', '~> 2.3'
gem "font-awesome-rails", '~> 3.2'
gem "gemoji", "~> 1.3.0"
gem "gon"
2011-10-08 21:36:38 +00:00
end
2011-10-27 19:37:17 +00:00
group :development do
2013-10-01 12:15:14 +00:00
gem "annotate", "~> 2.6.0.beta2"
gem "letter_opener"
2012-11-18 20:51:49 +00:00
gem 'quiet_assets', '~> 1.0.1'
2012-08-02 06:48:24 +00:00
gem 'rack-mini-profiler'
2013-10-01 12:15:14 +00:00
# Better errors handler
gem 'better_errors'
gem 'binding_of_caller'
2013-01-03 19:09:18 +00:00
gem 'rails_best_practices'
# Docs generator
gem "sdoc"
# thin instead webrick
gem 'thin'
2011-10-08 21:36:38 +00:00
end
group :development, :test do
2013-03-10 18:26:27 +00:00
gem 'coveralls', require: false
# gem 'rails-dev-tweaks'
2013-03-27 20:21:32 +00:00
gem 'spinach-rails'
gem "rspec-rails"
gem "capybara"
2012-02-13 05:43:58 +00:00
gem "pry"
gem "awesome_print"
gem "database_cleaner"
gem "launchy"
2012-08-28 05:28:09 +00:00
gem 'factory_girl_rails'
2012-09-10 06:26:35 +00:00
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
2013-06-24 19:03:32 +00:00
gem 'minitest', '~> 4.7.0'
2013-04-04 07:55:43 +00:00
# Generate Fake data
gem "ffaker"
# Guard
2012-09-10 06:26:35 +00:00
gem 'guard-rspec'
2012-09-10 13:43:49 +00:00
gem 'guard-spinach'
# Notification
gem 'rb-fsevent', require: darwin_only('rb-fsevent')
gem 'growl', require: darwin_only('growl')
gem 'rb-inotify', require: linux_only('rb-inotify')
# PhantomJS driver for Capybara
gem 'poltergeist', '~> 1.4.1'
2013-03-26 09:13:30 +00:00
gem 'spork', '~> 1.0rc'
gem 'jasmine'
2011-10-08 21:36:38 +00:00
end
group :test do
gem "simplecov", require: false
2013-05-23 08:54:44 +00:00
gem "shoulda-matchers", "~> 2.1.0"
gem 'email_spec'
gem "webmock"
2012-09-03 18:46:17 +00:00
gem 'test_after_commit'
2011-10-08 21:36:38 +00:00
end
group :production do
2013-06-22 13:48:34 +00:00
gem "gitlab_meta", '6.0'
end