-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (43 loc) · 1.21 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.2.2'
gem 'rails', '~> 7.1.2'
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', require: false
gem 'devise', '~> 4.9'
gem 'foreman', '~> 0.87.2'
gem 'importmap-rails'
gem 'jbuilder'
gem 'pg', '~> 1.1'
gem 'puma', '>= 5.0'
gem 'rubocop-rails', '~> 2.22'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'tailwindcss-rails', '~> 2.0'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[windows jruby]
# API
gem "devise-jwt", "~> 0.11.0"
gem "rack-cors", "~> 2.0"
gem "jsonapi-serializer", "~> 2.2"
# Use Redis adapter to run Action Cable in production
# gem "redis", ">= 4.0.1"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
group :development, :test do
gem 'debug', platforms: %i[mri windows]
gem 'factory_bot_rails', '~> 6.4'
gem 'faker', '~> 3.2'
gem 'rspec-rails', '~> 6.1.0'
end
group :development do
gem 'letter_opener', '~> 1.8'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
gem 'shoulda-matchers', '~> 5.3'
end