gitlabhq/Gemfile

156 lines
3.3 KiB
Text
Raw Normal View History

source "http://rubygems.org"
2011-10-09 00:36:38 +03: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
2012-08-11 22:48:55 +03:00
gem "rails", "3.2.8"
2011-10-09 00:36:38 +03:00
2012-06-20 13:45:26 +03:00
# Supported DBs
gem "sqlite3", group: :sqlite
gem "mysql2", group: :mysql
gem "pg", group: :postgres
2012-06-20 13:45:26 +03:00
# Auth
2012-07-05 23:50:24 -07:00
gem "devise", "~> 2.1.0"
2012-08-03 17:27:39 +02:00
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
2012-06-20 13:45:26 +03:00
# GITLAB patched libs
gem "grit", git: "https://github.com/gitlabhq/grit.git", ref: '7f35cb98ff17d534a07e3ce6ec3d580f67402837'
gem "omniauth-ldap", git: "https://github.com/gitlabhq/omniauth-ldap.git", ref: 'f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e'
gem 'yaml_db', git: "https://github.com/gitlabhq/yaml_db.git", ref: '98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd'
gem 'grack', git: "https://github.com/gitlabhq/grack.git", ref: 'ba46f3b0845c6a09d488ae6abdce6ede37e227e8'
2012-11-09 15:17:50 +02:00
gem 'grit_ext', git: "https://github.com/gitlabhq/grit_ext.git", ref: '212fd40bea61f3c6a167223768e7295dc32bbc10'
2012-06-20 13:45:26 +03:00
# Gitolite client (for work with gitolite-admin repo)
gem "gitolite", '1.1.0'
2012-10-02 16:29:03 +03:00
# Syntax highlighter
gem "pygments.rb", "0.3.1"
# Language detection
gem "github-linguist", "~> 2.3.4" , require: "linguist"
2012-10-02 16:29:03 +03:00
2012-08-11 22:59:56 +03:00
# API
gem "grape", "~> 0.2.1"
2012-08-11 22:59:56 +03:00
# Format dates and times
# based on human-friendly examples
gem "stamp"
2012-08-11 22:59:56 +03:00
# Pagination
gem "kaminari"
2012-08-11 22:59:56 +03:00
# HAML
gem "haml-rails"
2012-08-11 22:59:56 +03:00
# Files attachments
2011-10-09 00:36:38 +03:00
gem "carrierwave"
2012-08-11 22:59:56 +03:00
# Authorization
gem "six"
2012-08-11 22:59:56 +03:00
# Generate Fake data
2012-05-29 17:35:34 +05:00
gem "ffaker"
2012-08-11 22:59:56 +03:00
# Seed data
2012-02-11 20:34:25 +02:00
gem "seed-fu"
2012-08-11 22:59:56 +03:00
# Markdown to HTML
gem "redcarpet", "~> 2.1.1"
2012-09-17 11:10:04 -04:00
gem "github-markup", "~> 0.7.4", require: 'github/markup'
2012-08-11 22:59:56 +03:00
# Servers
gem "thin", '~> 1.5.0'
2012-03-10 17:48:29 +02:00
gem "unicorn"
2012-08-11 22:59:56 +03:00
# Issue tags
gem "acts-as-taggable-on", "2.3.1"
2012-08-11 22:59:56 +03:00
# Decorators
2012-08-23 17:11:37 -07:00
gem "draper"
2012-08-11 22:59:56 +03:00
# Background jobs
gem "resque", "~> 1.20.0"
2012-08-11 22:59:56 +03:00
gem 'resque_mailer'
# HTTP requests
gem "httparty"
2012-08-11 22:59:56 +03:00
# Colored output to console
gem "colored"
2012-08-11 22:59:56 +03:00
# GITLAB settings
gem 'settingslogic'
2011-11-04 09:42:36 +02:00
2012-08-11 22:59:56 +03:00
# Misc
gem "foreman"
2012-10-16 16:20:16 +02:00
gem 'gemoji', require: 'emoji/railtie'
2012-08-11 22:59:56 +03:00
gem "git"
2011-10-09 00:36:38 +03:00
group :assets do
2012-06-08 13:28:19 +03:00
gem "sass-rails", "3.2.5"
2012-04-26 20:43:12 +03:00
gem "coffee-rails", "3.2.2"
2012-02-11 20:34:25 +02:00
gem "uglifier", "1.0.3"
2012-05-29 17:22:26 +05:00
gem "therubyracer"
2012-06-22 02:00:09 -07:00
gem 'chosen-rails'
2012-09-23 08:53:48 -07:00
gem 'jquery-atwho-rails', '0.1.6'
2012-06-22 02:00:09 -07:00
gem "jquery-rails", "2.0.2"
gem "jquery-ui-rails", "0.5.0"
gem "modernizr", "2.5.3"
gem "raphael-rails", "1.5.2"
2012-08-17 09:09:11 +03:00
gem 'bootstrap-sass', "2.0.4"
2012-10-16 20:27:44 +02:00
gem "font-awesome-sass-rails", "~> 2.0.0"
2011-10-09 00:36:38 +03:00
end
2011-10-28 00:37:17 +05:00
group :development do
gem "annotate", git: "https://github.com/ctran/annotate_models.git"
gem "letter_opener"
gem 'quiet_assets', '1.0.1'
2012-08-02 09:48:24 +03:00
gem 'rack-mini-profiler'
2011-10-09 00:36:38 +03:00
end
group :development, :test do
gem 'rails-dev-tweaks'
2012-09-10 00:42:36 -07:00
gem 'spinach-rails'
gem "rspec-rails"
gem "capybara"
2012-08-11 23:33:49 +03:00
gem "capybara-webkit"
2012-08-19 11:36:37 +03:00
gem "headless"
2012-02-13 13:43:58 +08: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 09:26:35 +03:00
# Guard
2012-09-10 09:26:35 +03:00
gem 'guard-rspec'
2012-09-10 06:43:49 -07: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')
2011-10-09 00:36:38 +03:00
end
group :test do
gem "simplecov", require: false
gem "shoulda-matchers"
gem 'email_spec'
2012-05-21 16:05:12 -04:00
gem 'resque_spec'
gem "webmock"
2012-09-03 21:46:17 +03:00
gem 'test_after_commit'
2011-10-09 00:36:38 +03:00
end
group :production do
gem "gitlab_meta", '3.0'
end