-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (43 loc) · 1.07 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~> 8.0'
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', require: false
gem 'importmap-rails'
gem 'jbuilder'
gem 'kamal', require: false
gem 'pagy', '~> 9.1'
gem 'pg', '~> 1.1'
gem 'pg_search', '~> 2.3'
gem 'phosphor_icons', '~> 0.3.0'
gem 'propshaft'
gem 'puma', '>= 5.0'
gem 'richer_text', '~> 0.18.0'
gem 'solid_queue'
gem 'stimulus-rails'
gem 'tailwindcss-rails', '~> 3.0'
gem 'thruster', require: false
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[windows jruby]
group :development, :test do
gem 'brakeman', require: false
gem 'debug', platforms: %i[mri windows], require: 'debug/prelude'
gem 'dotenv'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
end
group :development do
gem 'rubocop', '~> 1.68'
gem 'rubocop-capybara', '~> 2.19'
gem 'rubocop-factory_bot', '~> 2.24'
gem 'rubocop-rails', '~> 2.21'
gem 'rubocop-rspec', '~> 3.2'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'rspec-bdd-style'
gem 'selenium-webdriver', '< 4.28'
gem 'shoulda-matchers', '~> 6.0'
end