forked from abdojulari/transcript-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
58 lines (42 loc) · 1.11 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
source 'https://rubygems.org'
ruby '2.7.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6'
# Use PostgreSQL as the database for Active Record
gem 'pg', '1.1.4'
# for ruby 2.3
gem 'pg_search', '2.1.4'
gem 'will_paginate'
# Back-end App is treated mostly as a JSON API
gem 'jbuilder', '~> 2.0' # Build JSON APIs with ease
gem 'rack-cors', :require => 'rack/cors'
# Rails app configuration / ENV management
gem 'figaro'
# User management / auth
gem 'devise_token_auth'
# gem 'devise'
gem 'omniauth-google-oauth2'
gem 'omniauth-facebook'
# required for omniauth 2+
gem "omniauth-rails_csrf_protection", '~> 1.0'
gem 'activerecord-session_store'
# Parsers for project asset precompilation
gem 'redcarpet'
gem 'ejs'
gem 'execjs'
# For audio transcripts
gem 'webvtt-ruby'
# Error logging
gem 'newrelic_rpm'
gem 'rails_12factor'
# For debugging
gem 'pry'
gem 'passenger'
# for the screep
gem 'rest-client'
# for the meedjia
gem 'sony_ci_api', git: 'https://github.com/WGBH-MLA/sony_ci_api_rewrite.git', branch: 'main'
gem 'bigdecimal', '1.4.2'
gem 'rexml'
gem 'unicorn'
gem 'rake', '13.0.6'