-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathGemfile
43 lines (33 loc) · 954 Bytes
/
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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
# Use PostgreSQL as the database for Active Record
gem 'pg'
gem 'pg_search'
gem 'will_paginate'
# Disabling assets; replaced with Gulp
# gem 'sass-rails', '~> 5.0'
# gem 'uglifier', '>= 1.3.0'
# gem 'coffee-rails', '~> 4.1.0'
# gem 'jquery-rails'
# Back-end App is treated mostly as a JSON API
gem 'jbuilder', '~> 2.0' # Build JSON APIs with ease
gem 'rails-api' # pare down rails to act like an API; disabling unnecessary middleware
# Rails app configuration / ENV management
gem 'figaro'
# User management / auth
gem 'devise_token_auth'
gem 'omniauth-google-oauth2'
gem 'omniauth-facebook'
# Parsers for project asset precompilation
gem 'redcarpet'
gem 'ejs'
gem 'execjs'
# For audio transcripts
gem 'popuparchive'
# Error logging
gem 'rails_12factor'
# Use unicorn on linux only
platforms :ruby do # linux
gem 'unicorn'
end