-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
77 lines (58 loc) · 1.31 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.2'
gem 'bootsnap', require: false
gem 'image_processing', '~> 1.2'
gem 'jbuilder'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem 'rack-cors'
gem 'rails', '~> 7.0.3'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# auth
gem 'authtrail'
gem 'bcrypt'
gem 'devise'
gem 'devise-jwt'
gem 'jwt'
gem 'annotate'
gem 'geocoder'
gem 'resque'
gem 'resque-scheduler'
gem 'sendinblue'
gem 'hiredis'
gem 'kredis'
gem 'redis', '~> 4.0', require: ['redis', 'redis/connection/hiredis']
gem 'redis-namespace'
gem 'redis-objects', '>= 2.0.0.alpha'
gem 'redis-rack-cache'
gem 'redis-rails'
# utils
gem 'execution_time'
# active storage
gem 'cloudinary'
gem 'api-pagination'
gem 'will_paginate', '~> 3.3'
group :development, :test do
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'rspec-rails'
end
group :development do
gem 'capybara'
gem 'faker'
gem 'guard-rspec'
gem 'launchy'
gem 'spring'
end
group :test do
gem 'shoulda-matchers'
end
gem 'ruby-lsp', '~> 0.2.1', group: :development
gem 'appsignal'
gem "delayed_job", "~> 4.1"
gem "delayed_job_active_record", "~> 4.1"
gem "rails-erd", "~> 1.7"