gitlab-org--gitlab-foss/Gemfile

215 lines
3.9 KiB
Ruby
Raw Normal View History

2013-03-06 11:55:11 -05:00
source "https://rubygems.org"
2011-10-08 17:36:38 -04: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
2013-10-24 11:17:53 -04:00
gem "rails", "3.2.15"
2011-10-08 17:36:38 -04:00
2012-06-20 06:45:26 -04:00
# Supported DBs
gem "mysql2", group: :mysql
gem "pg", group: :postgres
2012-06-20 06:45:26 -04:00
# Auth
2013-08-08 12:45:03 -04:00
gem "devise", '~> 2.2'
2013-10-09 08:25:31 -04:00
gem "devise-async"
gem 'omniauth', "~> 1.1.3"
2012-08-03 11:27:39 -04:00
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
2012-06-20 06:45:26 -04: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
gem "gitlab_git", "~> 3.1.0"
2013-04-27 16:50:17 -04:00
2013-03-03 15:08:04 -05:00
# Ruby/Rack Git Smart-HTTP Server Handler
gem 'gitlab-grack', '~> 1.0.1', require: 'grack'
2013-03-03 15:08:04 -05:00
# LDAP Auth
2013-06-13 03:07:06 -04:00
gem 'gitlab_omniauth-ldap', '1.0.3', require: "omniauth-ldap"
2012-10-02 09:29:03 -04:00
# Syntax highlighter
gem "gitlab-pygments.rb", '~> 0.5.4', require: 'pygments.rb'
2012-10-02 09:29:03 -04:00
# Git Wiki
gem "gitlab-gollum-lib", "~> 1.0.2", require: 'gollum-lib'
2012-10-02 09:29:03 -04:00
# Language detection
gem "gitlab-linguist", "~> 2.9.6", require: "linguist"
2012-10-02 09:29:03 -04:00
2012-08-11 15:59:56 -04:00
# API
gem "grape", "~> 0.4.1"
gem "grape-entity", "~> 0.3.0"
2012-08-11 15:59:56 -04:00
# Format dates and times
# based on human-friendly examples
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
2012-11-18 15:51:49 -05:00
gem "kaminari", "~> 0.14.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
2013-05-01 05:41:37 -04:00
# for aws storage
2013-07-08 02:47:31 -04:00
gem "fog", "~> 1.3.1", group: :aws
2012-08-11 15:59:56 -04:00
# Authorization
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
# Markdown to HTML
2012-11-18 15:51:49 -05:00
gem "redcarpet", "~> 2.2.2"
2012-09-17 11:10:04 -04:00
gem "github-markup", "~> 0.7.4", require: 'github/markup'
2012-08-11 15:59:56 -04:00
# Asciidoc to HTML
gem "asciidoctor"
# Application server
2013-07-08 02:47:31 -04:00
gem "unicorn", '~> 4.6.3', group: :unicorn
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
2013-05-01 06:29:29 -04:00
gem "acts-as-taggable-on"
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
gem 'sidekiq'
2012-08-11 15:59:56 -04:00
# HTTP requests
gem "httparty"
2012-08-11 15:59:56 -04:00
# Colored output to console
gem "colored"
2012-08-11 15:59:56 -04:00
2012-11-18 15:51:49 -05:00
# GitLab settings
gem 'settingslogic'
2011-11-04 03:42:36 -04:00
2012-08-11 15:59:56 -04:00
# Misc
gem "foreman"
# Cache
gem "redis-rails"
# Campfire integration
gem 'tinder', '~> 1.9.2'
2013-05-23 14:10:32 -04: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 06:48:03 -04:00
# Sanitize user input
gem "sanitize"
2013-09-24 14:13:25 -04:00
# Protect against bruteforcing
gem "rack-attack"
2011-10-08 17:36:38 -04:00
group :assets do
2013-05-01 06:29:29 -04:00
gem "sass-rails"
gem "coffee-rails"
gem "uglifier"
2012-05-29 08:22:26 -04:00
gem "therubyracer"
2013-04-29 03:10:45 -04:00
gem 'turbolinks'
gem 'jquery-turbolinks'
2012-06-22 05:00:09 -04:00
gem 'chosen-rails', "1.0.1"
2013-03-13 15:36:26 -04:00
gem 'select2-rails'
gem 'jquery-atwho-rails', "0.3.0"
2012-11-18 15:51:49 -05:00
gem "jquery-rails", "2.1.3"
gem "jquery-ui-rails", "2.0.2"
gem "modernizr", "2.6.2"
2013-08-31 18:04:22 -04:00
gem "raphael-rails", "~> 2.1.2"
2013-05-23 03:05:07 -04:00
gem 'bootstrap-sass'
gem "font-awesome-rails"
2012-11-18 15:51:49 -05:00
gem "gemoji", "~> 1.2.1", require: 'emoji/railtie'
gem "gon"
2011-10-08 17:36:38 -04:00
end
2011-10-27 15:37:17 -04:00
group :development do
2013-10-01 08:15:14 -04:00
gem "annotate", "~> 2.6.0.beta2"
gem "letter_opener"
2012-11-18 15:51:49 -05:00
gem 'quiet_assets', '~> 1.0.1'
2012-08-02 02:48:24 -04:00
gem 'rack-mini-profiler'
2013-10-01 08:15:14 -04:00
# Better errors handler
gem 'better_errors'
gem 'binding_of_caller'
2013-01-03 14:09:18 -05:00
gem 'rails_best_practices'
# Docs generator
gem "sdoc"
# 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
gem 'rails-dev-tweaks'
2013-03-27 16:21:32 -04:00
gem 'spinach-rails'
gem "rspec-rails"
gem "capybara"
2012-02-13 00:43:58 -05:00
gem "pry"
gem "awesome_print"
gem "database_cleaner"
gem "launchy"
2012-08-28 01:28:09 -04:00
gem 'factory_girl_rails'
2012-09-10 02:26:35 -04:00
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
2013-06-24 15:03:32 -04:00
gem 'minitest', '~> 4.7.0'
2013-04-04 03:55:43 -04:00
# Generate Fake data
gem "ffaker"
# Guard
2012-09-10 02:26:35 -04:00
gem 'guard-rspec'
2012-09-10 09:43:49 -04: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 05:13:30 -04:00
gem 'spork', '~> 1.0rc'
gem 'jasmine'
2011-10-08 17:36:38 -04:00
end
group :test do
gem "simplecov", require: false
2013-05-23 04:54:44 -04:00
gem "shoulda-matchers", "~> 2.1.0"
gem 'email_spec'
gem "webmock"
2012-09-03 14:46:17 -04:00
gem 'test_after_commit'
2011-10-08 17:36:38 -04:00
end
group :production do
2013-06-22 09:48:34 -04:00
gem "gitlab_meta", '6.0'
end