-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (46 loc) · 1.31 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
gem 'aws-sdk-s3', require: false
gem 'bcrypt', '~> 3.1', '>= 3.1.11'
gem 'bootsnap', require: false
gem 'cssbundling-rails'
gem 'image_processing', '~> 1.12', '>= 1.12.2'
gem 'iso_country_codes', '~> 0.7.8'
gem 'jbuilder'
gem 'jsbundling-rails'
gem 'pagy', '~> 7.0', '>= 7.0.4'
gem 'pg', '~> 1.1'
gem 'premailer-rails', '~> 1.12'
gem 'propshaft'
gem 'puma', '~> 5.0'
gem 'rails', '~> 7.1'
gem 'redis', '~> 4.0'
gem 'ruby-vips'
gem 'stimulus-rails'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :development, :test do
gem 'factory_bot_rails', '~> 6.2'
gem 'faker', '~> 3.2', '>= 3.2.3'
gem 'letter_opener', '~> 1.8', '>= 1.8.1'
gem 'pry'
gem 'rails-controller-testing'
gem 'rubocop', '~> 1.57', '>= 1.57.2'
gem 'rubocop-capybara', '~> 2.19'
gem 'rubocop-performance', '~> 1.19', '>= 1.19.1'
gem 'rubocop-rails', '~> 2.22', '>= 2.22.1'
gem 'rubocop-rspec', '~> 2.25'
gem 'timecop', '~> 0.9.5'
end
group :development do
gem 'i18n-debug'
gem 'web-console'
end
group :test do
gem 'capybara', '~> 3.39', '>= 3.39.2'
gem 'rspec-rails', '~> 6.0', '>= 6.0.3'
gem 'selenium-webdriver', '~> 4.16'
gem 'shoulda-matchers', '~> 5.0'
end