This repository has been archived by the owner on Jun 13, 2019. It is now read-only.
forked from ServiceInnovationLab/pancake-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
96 lines (74 loc) · 1.96 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.2.0'
# React
gem 'react-rails'
gem 'webpacker'
# Database
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 3.7'
gem 'paranoia', '~> 2.2'
# Logins
gem 'devise'
gem 'devise_invitable'
# Permissions
gem 'pundit'
# JWT and QR stuff
gem 'jwt', '~> 2.1.0'
gem 'rqrcode'
gem 'loofah', '>= 2.2.1'
gem 'rails-html-sanitizer', '>= 1.0.4'
gem 'haml-rails'
gem 'purecss-rails'
gem 'rack-cors', require: 'rack/cors'
gem 'font-awesome-rails'
gem 'raygun4ruby' # exception catcher/logger
gem 'chartkick'
gem 'groupdate'
# Makes the pdfs
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
# gem 'wkhtmltopdf-heroku'
gem 'aws-sdk-s3' # We store images on s3
gem 'httparty'
gem 'image_processing'
gem 'jsonapi-rails', '~> 0.3.0'
gem 'jsonapi_spec_helpers', '~> 0.4', require: false
gem 'jsonapi_suite', '~> 0.7'
gem 'jsonapi_swagger_helpers', '~> 0.6', require: false
gem 'kaminari', '~> 1.0'
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'travis'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'dotenv-rails'
gem 'factory_bot_rails', '~> 4.0'
gem 'faker', '~> 1.7'
gem 'letter_opener'
gem 'percy-capybara', '~> 4.0.0'
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 3.5.2'
gem 'rubocop', '0.70.0'
gem 'swagger-diff', '~> 1.1'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'capybara-selenium'
gem 'database_cleaner', '~> 1.6'
gem 'simplecov', require: false
# freezes time in some specs
gem 'timecop'
gem 'webdrivers'
end