-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
117 lines (78 loc) · 2.41 KB
/
Gemfile
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '4.2.1'
gem 'arel'
gem 'jquery-rails'
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'sass-rails', '>= 5.0.3'
gem 'uglifier', '>= 2.7.1'
# database
gem 'sqlite3'
# gem 'pg'
# Sprockets support for .es6 files, using babel.
gem 'sprockets-es6', require: 'sprockets/es6'
# for building JSON
gem 'jbuilder', '>= 2.2.13'
# for authentication
gem 'devise', '3.4.1'
# for sending devise emails in background
gem 'devise-async', git: 'https://github.com/mhfs/devise-async.git'
# for background job processing
gem 'delayed_job_active_record'
# web interface for delayed job
gem 'delayed_job_web', '>= 1.2.10'
# For starting Delayed job background process
gem 'daemons'
# collection of handy tools
gem 'handy'
# for error tracking
gem 'honeybadger'
# use bootstrap3
gem 'bootstrap-sass', '~> 3.3.3'
# use font-awesome
gem 'font-awesome-sass', '~> 4.3.0'
# forms made easy for rails
gem 'simple_form'
# admin framework
gem 'activeadmin', git: 'https://github.com/activeadmin/activeadmin'
# for handling file uploads
gem 'carrierwave'
# for CarrierWave to upload files to cloud storage like Amazon S3
gem 'fog', require: false
# for CarrierWave to perform image manipulations
#gem 'mini_magick'
# for logging to work in heroku
gem 'rails_12factor', group: [:staging, :production]
# for email validation
gem 'email_validator'
# for variants support
gem 'browser'
# haml as templating engine
gem 'haml-rails'
# intercepts outgoing emails in non-production environment
gem 'mail_interceptor', git: 'https://github.com/bigbinary/mail_interceptor', group: [:development, :staging]
# Adds prefix to the subject in emails
gem 'email_prefixer'
# HTTP server for Rack applications for staging and production
# See https://github.com/bigbinary/wheel/issues/43 for why unicorn is
# not used in development.
gem 'unicorn', group: [:staging, :production]
group :development do
# application server for development
gem 'thin'
# mutes assets pipeline log messages
gem 'quiet_assets'
# speeds up development by keeping your application running in the background
gem 'spring'
# web console
gem 'web-console', '~> 2.0'
end
group :test do
# customizable MiniTest output formats
gem 'minitest-reporters', require: false
# for test coverage report
gem 'simplecov', require: false
end
# Attach comments to Active Record queries
gem 'marginalia'
gem 'react-rails', '1.6.0'