Commit 44f79b2cb11a7e05be19ff0d37bad101290a9492

Authored by randx
1 parent a237c802

Add comments to Gemfile

Showing 1 changed file with 43 additions and 5 deletions   Show diff stats
Gemfile
... ... @@ -18,30 +18,68 @@ gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
18 18 gem 'grack', :git => "https://github.com/gitlabhq/grack.git"
19 19 gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
20 20  
  21 +# API
21 22 gem "grape", "~> 0.2.1"
  23 +
  24 +# Format dates and times
  25 +# based on human-friendly examples
22 26 gem "stamp"
  27 +
  28 +# Pagination
23 29 gem "kaminari"
  30 +
  31 +# HAML
24 32 gem "haml-rails"
  33 +
  34 +# Files attachments
25 35 gem "carrierwave"
  36 +
  37 +# Authorization
26 38 gem "six"
  39 +
  40 +# Generate Fake data
27 41 gem "ffaker"
  42 +
  43 +# Seed data
28 44 gem "seed-fu"
  45 +
  46 +# Markdown to HTML
29 47 gem "redcarpet", "~> 2.1.1"
  48 +
  49 +# Servers
30 50 gem "thin"
31 51 gem "unicorn"
32   -gem "git"
33   -gem "acts_as_list"
  52 +
  53 +# Issue tags
34 54 gem "acts-as-taggable-on", "2.3.1"
  55 +
  56 +# Decorators
35 57 gem "drapper"
  58 +
  59 +# Background jobs
36 60 gem "resque", "~> 1.20.0"
  61 +gem 'resque_mailer'
  62 +
  63 +# HTTP requests
37 64 gem "httparty"
  65 +
  66 +# Handle encodings
38 67 gem "charlock_holmes"
39   -gem "foreman"
  68 +
  69 +# Colored output to console
40 70 gem "colored"
41   -gem 'resque_mailer'
42   -gem 'tabs_on_rails'
  71 +
  72 +# GITLAB settings
43 73 gem 'settingslogic'
44 74  
  75 +# Misc
  76 +gem "foreman"
  77 +gem "git"
  78 +
  79 +# Unused
  80 +gem 'tabs_on_rails'
  81 +gem "acts_as_list"
  82 +
45 83 group :assets do
46 84 gem "sass-rails", "3.2.5"
47 85 gem "coffee-rails", "3.2.2"
... ...