gitlabhq/Gemfile

167 lines
3.7 KiB
Ruby
Raw Normal View History

source "http://rubygems.org"
2011-10-08 23:36:38 +02: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-01-09 10:07:55 +01:00
gem "rails", "3.2.11"
2011-10-08 23:36:38 +02:00
2012-06-20 12:45:26 +02:00
# Supported DBs
gem "mysql2", group: :mysql
gem "pg", group: :postgres
2012-06-20 12:45:26 +02:00
# Auth
2012-07-06 08:50:24 +02:00
gem "devise", "~> 2.1.0"
2012-11-18 21:51:49 +01:00
gem 'omniauth', "~> 1.1.1"
2012-08-03 17:27:39 +02:00
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
2012-06-20 12:45:26 +02:00
# GITLAB patched libs
gem "grit", git: "https://github.com/gitlabhq/grit.git", ref: '7f35cb98ff17d534a07e3ce6ec3d580f67402837'
gem 'grack', git: "https://github.com/gitlabhq/grack.git", ref: 'ba46f3b0845c6a09d488ae6abdce6ede37e227e8'
gem 'grit_ext', git: "https://github.com/gitlabhq/grit_ext.git", ref: '8e6afc2da821354774aa4d1ee8a1aa2082f84a3e'
2012-06-20 12:45:26 +02:00
# LDAP Auth
gem 'gitlab_omniauth-ldap', '1.0.2', require: "omniauth-ldap"
2012-12-30 13:54:08 +01:00
# Dump db to yml file. Mostly used to migrate from sqlite to mysql
gem 'gitlab_yaml_db', '1.0.0', require: "yaml_db"
2012-10-02 15:29:03 +02:00
# Syntax highlighter
2012-12-05 02:14:08 +01:00
gem "pygments.rb", git: "https://github.com/gitlabhq/pygments.rb.git", branch: "master"
2012-10-02 15:29:03 +02:00
# Language detection
gem "github-linguist", "~> 2.3.4" , require: "linguist"
2012-10-02 15:29:03 +02:00
2012-08-11 21:59:56 +02:00
# API
gem "grape", "~> 0.2.1"
2012-08-11 21:59:56 +02:00
# Format dates and times
# based on human-friendly examples
gem "stamp"
2012-08-11 21:59:56 +02:00
# Pagination
2012-11-18 21:51:49 +01:00
gem "kaminari", "~> 0.14.1"
2012-08-11 21:59:56 +02:00
# HAML
2012-11-18 21:51:49 +01:00
gem "haml-rails", "~> 0.3.5"
2012-08-11 21:59:56 +02:00
# Files attachments
2012-11-18 21:51:49 +01:00
gem "carrierwave", "~> 0.7.1"
2012-08-11 21:59:56 +02:00
# Authorization
gem "six"
2012-08-11 21:59:56 +02:00
# Generate Fake data
2012-05-29 14:35:34 +02:00
gem "ffaker"
2012-08-11 21:59:56 +02:00
# Seed data
2012-02-11 19:34:25 +01:00
gem "seed-fu"
2012-08-11 21:59:56 +02:00
# Markdown to HTML
2012-11-18 21:51:49 +01:00
gem "redcarpet", "~> 2.2.2"
2012-09-17 17:10:04 +02:00
gem "github-markup", "~> 0.7.4", require: 'github/markup'
2012-08-11 21:59:56 +02:00
# Servers
2012-11-18 21:51:49 +01:00
gem "unicorn", "~> 4.4.0"
2012-08-11 21:59:56 +02:00
# Issue tags
2012-11-18 21:51:49 +01:00
gem "acts-as-taggable-on", "2.3.3"
2012-08-11 21:59:56 +02:00
# Decorators
2012-11-18 21:51:49 +01:00
gem "draper", "~> 0.18.0"
2012-08-11 21:59:56 +02:00
# Background jobs
2013-01-09 06:14:05 +01:00
gem 'slim'
gem 'sinatra', :require => nil
gem 'sidekiq', '2.6.4'
2012-08-11 21:59:56 +02:00
# HTTP requests
gem "httparty"
2012-08-11 21:59:56 +02:00
# Colored output to console
gem "colored"
2012-08-11 21:59:56 +02:00
2012-11-18 21:51:49 +01:00
# GitLab settings
gem 'settingslogic'
2011-11-04 08:42:36 +01:00
2012-08-11 21:59:56 +02:00
# Misc
gem "foreman"
gem "git"
2011-10-08 23:36:38 +02:00
group :assets do
2012-11-18 21:51:49 +01:00
gem "sass-rails", "~> 3.2.5"
gem "coffee-rails", "~> 3.2.2"
gem "uglifier", "~> 1.3.0"
2012-05-29 14:22:26 +02:00
gem "therubyracer"
2012-06-22 11:00:09 +02:00
2012-11-18 21:51:49 +01:00
gem 'chosen-rails', "0.9.8"
gem 'jquery-atwho-rails', "0.1.7"
2012-11-18 21:51:49 +01:00
gem "jquery-rails", "2.1.3"
gem "jquery-ui-rails", "2.0.2"
gem "modernizr", "2.6.2"
2013-01-04 13:58:58 +01:00
gem "raphael-rails", git: "https://github.com/gitlabhq/raphael-rails.git"
2012-11-20 19:01:25 +01:00
gem 'bootstrap-sass', "2.2.1.1"
gem "font-awesome-sass-rails", "~> 3.0.0"
2012-11-18 21:51:49 +01:00
gem "gemoji", "~> 1.2.1", require: 'emoji/railtie'
2011-10-08 23:36:38 +02:00
end
2011-10-27 21:37:17 +02:00
group :development do
gem "annotate", git: "https://github.com/ctran/annotate_models.git"
gem "letter_opener"
2012-11-18 21:51:49 +01:00
gem 'quiet_assets', '~> 1.0.1'
2012-08-02 08:48:24 +02:00
gem 'rack-mini-profiler'
# Better errors handler
gem 'better_errors'
gem 'binding_of_caller'
2013-01-03 20:09:18 +01:00
gem 'rails_best_practices'
# Docs generator
gem "sdoc"
# thin instead webrick
gem 'thin'
2011-10-08 23:36:38 +02:00
end
group :development, :test do
gem 'rails-dev-tweaks'
2012-09-10 09:42:36 +02:00
gem 'spinach-rails'
gem "rspec-rails"
gem "capybara"
2012-02-13 06:43:58 +01:00
gem "pry"
gem "awesome_print"
2012-12-18 19:43:44 +01:00
gem "database_cleaner", ref: "f89c34300e114be99532f14c115b2799a3380ac6", git: "https://github.com/bmabey/database_cleaner.git"
gem "launchy"
2012-08-28 07:28:09 +02:00
gem 'factory_girl_rails'
2012-09-10 08:26:35 +02:00
# Guard
2012-09-10 08:26:35 +02:00
gem 'guard-rspec'
2012-09-10 15:43:49 +02: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', git: 'https://github.com/jonleighton/poltergeist.git', ref: '5c2e092001074a8cf09f332d3714e9ba150bc8ca'
2011-10-08 23:36:38 +02:00
end
group :test do
gem "simplecov", require: false
2012-11-18 21:51:49 +01:00
gem "shoulda-matchers", "1.3.0"
gem 'email_spec'
gem "webmock"
2012-09-03 20:46:17 +02:00
gem 'test_after_commit'
2011-10-08 23:36:38 +02:00
end
group :production do
2012-11-30 22:08:08 +01:00
gem "gitlab_meta", '4.0'
end