2011-11-28 17:34:11 +08:00
|
|
|
source "http://rubygems.org"
|
2011-10-09 00:36:38 +03:00
|
|
|
|
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
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "sqlite3"
|
2012-03-06 19:54:59 +02:00
|
|
|
gem "mysql2"
|
2012-06-20 13:45:26 +03:00
|
|
|
|
|
|
|
# Auth
|
2012-07-05 23:50:24 -07:00
|
|
|
gem "devise", "~> 2.1.0"
|
2012-06-20 13:45:26 +03:00
|
|
|
|
|
|
|
# GITLAB patched libs
|
2012-06-26 10:55:25 +03:00
|
|
|
gem "grit", :git => "https://github.com/gitlabhq/grit.git", :ref => "7f35cb98ff17d534a07e3ce6ec3d580f67402837"
|
|
|
|
gem "gitolite", :git => "https://github.com/gitlabhq/gitolite-client.git", :ref => "9b715ca8bab6529f6c92204a25f84d12f25a6eb0"
|
|
|
|
gem "pygments.rb", :git => "https://github.com/gitlabhq/pygments.rb.git", :ref => "2cada028da5054616634a1d9ca6941b65b3ce188"
|
2012-07-21 09:04:05 +01:00
|
|
|
gem "omniauth-ldap", :git => "https://github.com/gitlabhq/omniauth-ldap.git", :ref => "f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e"
|
2012-06-26 10:55:25 +03:00
|
|
|
gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
|
2012-06-29 18:49:36 +08:00
|
|
|
gem 'grack', :git => "https://github.com/gitlabhq/grack.git"
|
2012-06-20 13:45:26 +03:00
|
|
|
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
|
|
|
|
|
2012-08-11 22:59:56 +03:00
|
|
|
# API
|
2012-07-26 07:29:53 -07:00
|
|
|
gem "grape", "~> 0.2.1"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# Format dates and times
|
|
|
|
# based on human-friendly examples
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "stamp"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# Pagination
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "kaminari"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# HAML
|
2011-11-28 17:34:11 +08:00
|
|
|
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
|
2011-11-28 17:34:11 +08:00
|
|
|
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
|
2012-04-17 23:02:21 +02:00
|
|
|
gem "redcarpet", "~> 2.1.1"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# Servers
|
2011-10-08 14:57:14 -07:00
|
|
|
gem "thin"
|
2012-03-10 17:48:29 +02:00
|
|
|
gem "unicorn"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# Issue tags
|
2012-06-27 21:20:35 +03:00
|
|
|
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
|
2012-02-18 09:37:58 -06:00
|
|
|
gem "resque", "~> 1.20.0"
|
2012-08-11 22:59:56 +03:00
|
|
|
gem 'resque_mailer'
|
|
|
|
|
|
|
|
# HTTP requests
|
2011-12-14 17:38:52 +01:00
|
|
|
gem "httparty"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# Handle encodings
|
2011-12-30 22:25:45 +08:00
|
|
|
gem "charlock_holmes"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# Colored output to console
|
2012-02-29 22:38:24 +02:00
|
|
|
gem "colored"
|
2012-08-11 22:59:56 +03:00
|
|
|
|
|
|
|
# GITLAB settings
|
2012-07-02 21:51:48 +03:00
|
|
|
gem 'settingslogic'
|
2011-11-04 09:42:36 +02:00
|
|
|
|
2012-08-11 22:59:56 +03:00
|
|
|
# Misc
|
|
|
|
gem "foreman"
|
|
|
|
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'
|
|
|
|
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"
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2011-10-28 00:37:17 +05:00
|
|
|
group :development do
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "letter_opener"
|
|
|
|
gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
|
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
|
2011-11-28 17:34:11 +08:00
|
|
|
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"
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "autotest"
|
|
|
|
gem "autotest-rails"
|
2012-02-13 13:43:58 +08:00
|
|
|
gem "pry"
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "awesome_print"
|
|
|
|
gem "database_cleaner"
|
|
|
|
gem "launchy"
|
2012-08-28 01:28:09 -04:00
|
|
|
gem 'factory_girl_rails'
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
2012-06-15 07:15:28 +03:00
|
|
|
gem 'cucumber-rails', :require => false
|
2011-11-28 17:34:11 +08:00
|
|
|
gem "simplecov", :require => false
|
2012-05-29 02:35:50 +05:00
|
|
|
gem "shoulda-matchers"
|
2012-05-14 14:05:32 -04:00
|
|
|
gem 'email_spec'
|
2012-05-21 16:05:12 -04:00
|
|
|
gem 'resque_spec'
|
2012-07-12 15:36:33 +03:00
|
|
|
gem "webmock"
|
2012-09-03 21:46:17 +03:00
|
|
|
gem 'test_after_commit'
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
2012-08-23 19:21:20 -04:00
|
|
|
|
|
|
|
group :production do
|
2012-08-30 22:48:01 +03:00
|
|
|
gem "gitlab_meta", '2.9'
|
2012-08-23 19:21:20 -04:00
|
|
|
end
|