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