-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (32 loc) · 838 Bytes
/
Gemfile
File metadata and controls
39 lines (32 loc) · 838 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
source "https://rubygems.org"
ruby "3.3.6"
gem "rails", "~> 8.0.2"
gem "pg", "~> 1.6"
gem "puma", "~> 6.5"
gem "redis", "~> 5.2"
gem 'devise', '~> 4.9.3'
gem 'devise-jwt', '~> 0.12.1'
gem 'sidekiq', '~> 7.3'
gem 'rswag-api', '~> 2.16'
gem 'rswag-ui', '~> 2.16'
gem 'active_model_serializers', '~> 0.10.15'
gem 'ruby-openai', '~> 8.3'
gem 'kaminari', '~> 1.2'
gem 'rack-cors', '~> 3.0'
gem "tzinfo-data", platforms: %i[ windows jruby ]
gem "bootsnap", require: false
group :development, :test do
gem "debug", platforms: %i[ mri windows ]
gem 'rspec-rails', '~> 7.1'
gem 'factory_bot_rails', '~> 6.5'
gem 'faker', '~> 3.3'
gem 'database_cleaner-active_record', '~> 2.2'
gem 'rswag-specs', '~> 2.16'
gem 'dotenv-rails', '~> 3.1'
end
group :test do
gem 'shoulda-matchers'
end
group :development do
# gem "spring"
end