-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (49 loc) · 928 Bytes
/
Gemfile
File metadata and controls
59 lines (49 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0'
gem 'mysql2'
# Authorization
gem 'devise'
# ElasticSearch
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
# Assets
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'lodash-rails'
gem 'react-rails'
gem 'browserify-rails'
# File Attachments
gem 'rmagick'
gem 'carrierwave'
gem 'redis', '~> 3.0'
gem 'sidekiq'
# Utils
gem 'enumerize'
gem 'factory_girl'
gem 'faker'
gem 'rabl'
gem 'uuidtools'
gem 'color-generator'
gem 'airbrake', '4.1.0'
gem 'dotenv-rails'
gem 'roo'
gem 'acts_as_list'
gem 'puma', '~> 3.0'
# Deployment
group :development do
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-sidekiq'
gem 'sqlite3'
gem 'listen'
end
group :production do
gem 'therubyracer'
gem 'libv8'
end