-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (37 loc) · 865 Bytes
/
Gemfile
File metadata and controls
50 lines (37 loc) · 865 Bytes
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
source 'https://rubygems.org'
ruby '~> 3.4'
gem 'pg', '~> 1.5'
gem 'puma', '>= 5.0'
gem 'rails', '~> 8.0'
# Background jobs
gem 'redis', '~> 5.0'
gem 'sidekiq', '~> 8.0'
# Auth
gem 'devise', '~> 4.9'
gem 'devise-jwt', '~> 0.12'
# Frontend
gem 'vite_rails', '~> 3.0'
# Authorization
gem 'pundit', '~> 2.4'
# API
gem 'jbuilder', '~> 2.12'
gem 'oj', '~> 3.16'
gem 'rack-cors', '~> 2.0'
# HTTP client (for Python SSE bridge)
gem 'faraday', '~> 2.9'
# Encryption
gem 'lockbox', '~> 1.3'
# Timezone data
gem 'tzinfo-data', platforms: %i[windows jruby]
# Boot speed
gem 'bootsnap', require: false
group :development, :test do
gem 'debug', platforms: %i[mri windows]
gem 'dotenv-rails', '~> 3.1'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
end
group :development do
gem 'foreman'
end