Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-08-11 23:59:56 +0400
committerrandx <dmitriy.zaporozhets@gmail.com>2012-08-11 23:59:56 +0400
commit44f79b2cb11a7e05be19ff0d37bad101290a9492 (patch)
treedc0999e4fd7f99bc5436c2b39d77d3c69953f3b7 /Gemfile
parenta237c802dadb4e16a665117f3f2c07c4d1d68c1b (diff)
Add comments to Gemfile
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile48
1 files changed, 43 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 91c8395f6f9..aa0ef934efc 100644
--- a/Gemfile
+++ b/Gemfile
@@ -18,30 +18,68 @@ gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
gem 'grack', :git => "https://github.com/gitlabhq/grack.git"
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
+# API
gem "grape", "~> 0.2.1"
+
+# Format dates and times
+# based on human-friendly examples
gem "stamp"
+
+# Pagination
gem "kaminari"
+
+# HAML
gem "haml-rails"
+
+# Files attachments
gem "carrierwave"
+
+# Authorization
gem "six"
+
+# Generate Fake data
gem "ffaker"
+
+# Seed data
gem "seed-fu"
+
+# Markdown to HTML
gem "redcarpet", "~> 2.1.1"
+
+# Servers
gem "thin"
gem "unicorn"
-gem "git"
-gem "acts_as_list"
+
+# Issue tags
gem "acts-as-taggable-on", "2.3.1"
+
+# Decorators
gem "drapper"
+
+# Background jobs
gem "resque", "~> 1.20.0"
+gem 'resque_mailer'
+
+# HTTP requests
gem "httparty"
+
+# Handle encodings
gem "charlock_holmes"
-gem "foreman"
+
+# Colored output to console
gem "colored"
-gem 'resque_mailer'
-gem 'tabs_on_rails'
+
+# GITLAB settings
gem 'settingslogic'
+# Misc
+gem "foreman"
+gem "git"
+
+# Unused
+gem 'tabs_on_rails'
+gem "acts_as_list"
+
group :assets do
gem "sass-rails", "3.2.5"
gem "coffee-rails", "3.2.2"