-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathGemfile
65 lines (47 loc) · 1.03 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
source 'https://rubygems.org'
# adds a Swagger to API
gem 'rswag-api'
gem 'rswag-ui'
# Rails/Framework
gem 'rails'
gem 'jsonite'
gem 'geokit-rails'
# Persistence
gem 'pg'
# Use Puma as the app server
gem 'puma'
gem 'phonelib'
gem 'faker'
# Search Provider
gem 'algoliasearch-rails'
# AirTable API, visually view DB updates & Datathon feedback at airtable.com/tbl0DbgzCMib5WlMA/
gem 'airrecord'
# CORS
gem 'rack-cors'
# Error handling
gem 'sentry-raven'
# Authentication
gem 'jwt'
gem 'lograge'
gem 'prometheus-client'
gem 'rspec-rails'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a
# debugger console
gem 'factory_bot_rails'
gem 'byebug'
gem 'bullet'
gem 'dotenv-rails'
gem 'spring'
gem 'rubocop'
end
group :development do
gem 'annotate', require: false
end
group :test do
gem 'rspec-collection_matchers'
end
gem 'pdfcrowd'
gem 'google-cloud-translate'
gem 'omniauth-auth0', '~> 3.0'
gem 'omniauth-rails_csrf_protection', '~> 1.0' # prevents forged authentication requests