-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
56 lines (49 loc) · 1.15 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 2.7'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'devise-jwt'
gem 'pg'
gem 'puma', '~> 5.4'
gem 'rails', '~> 6.1.4'
gem 'sentry-raven'
gem 'happypdf_renderer', github: 'railslove/happypdf_renderer'
gem 'interactor-rails'
gem 'rack-cors'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'rails_admin'
gem 'stripe'
gem 'rqrcode'
gem "aws-sdk-s3", require: false
gem 'activestorage-validator'
gem 'image_processing'
gem 'paper_trail'
gem 'protobuf'
gem 'jimson'
# Emails
gem 'mailgun-ruby', '~> 1.2'
gem 'inky-rb', require: 'inky'
gem 'premailer-rails'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'letter_opener'
gem 'rspec-core', '~> 3.10.0'
gem 'rspec-expectations', '~> 3.10.1'
gem 'rspec-mocks', '~> 3.10.2'
gem 'rspec-rails', '~> 5.0.2'
gem 'rspec-support', '~> 3.10.2'
gem 'bullet'
gem 'climate_control'
end
group :development do
gem 'listen', '~> 3.6'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'webmock'
end