Add comments to Gemfile
This commit is contained in:
parent
a237c802da
commit
44f79b2cb1
52
Gemfile
52
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 'grack', :git => "https://github.com/gitlabhq/grack.git"
|
||||||
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
|
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
|
||||||
|
|
||||||
|
# API
|
||||||
gem "grape", "~> 0.2.1"
|
gem "grape", "~> 0.2.1"
|
||||||
|
|
||||||
|
# Format dates and times
|
||||||
|
# based on human-friendly examples
|
||||||
gem "stamp"
|
gem "stamp"
|
||||||
|
|
||||||
|
# Pagination
|
||||||
gem "kaminari"
|
gem "kaminari"
|
||||||
|
|
||||||
|
# HAML
|
||||||
gem "haml-rails"
|
gem "haml-rails"
|
||||||
|
|
||||||
|
# Files attachments
|
||||||
gem "carrierwave"
|
gem "carrierwave"
|
||||||
|
|
||||||
|
# Authorization
|
||||||
gem "six"
|
gem "six"
|
||||||
|
|
||||||
|
# Generate Fake data
|
||||||
gem "ffaker"
|
gem "ffaker"
|
||||||
|
|
||||||
|
# Seed data
|
||||||
gem "seed-fu"
|
gem "seed-fu"
|
||||||
|
|
||||||
|
# Markdown to HTML
|
||||||
gem "redcarpet", "~> 2.1.1"
|
gem "redcarpet", "~> 2.1.1"
|
||||||
|
|
||||||
|
# Servers
|
||||||
gem "thin"
|
gem "thin"
|
||||||
gem "unicorn"
|
gem "unicorn"
|
||||||
gem "git"
|
|
||||||
gem "acts_as_list"
|
# Issue tags
|
||||||
gem "acts-as-taggable-on", "2.3.1"
|
gem "acts-as-taggable-on", "2.3.1"
|
||||||
|
|
||||||
|
# Decorators
|
||||||
gem "drapper"
|
gem "drapper"
|
||||||
|
|
||||||
|
# Background jobs
|
||||||
gem "resque", "~> 1.20.0"
|
gem "resque", "~> 1.20.0"
|
||||||
gem "httparty"
|
|
||||||
gem "charlock_holmes"
|
|
||||||
gem "foreman"
|
|
||||||
gem "colored"
|
|
||||||
gem 'resque_mailer'
|
gem 'resque_mailer'
|
||||||
gem 'tabs_on_rails'
|
|
||||||
|
# HTTP requests
|
||||||
|
gem "httparty"
|
||||||
|
|
||||||
|
# Handle encodings
|
||||||
|
gem "charlock_holmes"
|
||||||
|
|
||||||
|
# Colored output to console
|
||||||
|
gem "colored"
|
||||||
|
|
||||||
|
# GITLAB settings
|
||||||
gem 'settingslogic'
|
gem 'settingslogic'
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
gem "foreman"
|
||||||
|
gem "git"
|
||||||
|
|
||||||
|
# Unused
|
||||||
|
gem 'tabs_on_rails'
|
||||||
|
gem "acts_as_list"
|
||||||
|
|
||||||
group :assets do
|
group :assets do
|
||||||
gem "sass-rails", "3.2.5"
|
gem "sass-rails", "3.2.5"
|
||||||
gem "coffee-rails", "3.2.2"
|
gem "coffee-rails", "3.2.2"
|
||||||
|
|
Loading…
Reference in a new issue