-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (31 loc) · 801 Bytes
/
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
source "https://rubygems.org"
ruby "3.3.0"
gem "rails", "~> 7.1.2"
gem "pg", "~> 1.1"
gem "puma", ">= 5.0"
gem "tzinfo-data", platforms: %i[ windows jruby ]
gem "bootsnap", require: false
gem "rack-cors"
gem 'will_paginate'
gem 'ransack'
gem 'jbuilder'
gem 'activerecord-import'
gem 'sidekiq'
gem 'redis'
gem 'redis-client'
gem "faker"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
#Auth
gem 'devise'
gem 'devise-jwt'
group :development, :test do
gem "debug", platforms: %i[ mri windows ]
gem "rspec-rails"
gem "factory_bot_rails"
gem 'shoulda-matchers'
end
group :development do
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end