-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
30 lines (25 loc) · 814 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby File.read('.ruby-version').split('-').last.strip
gem 'rails', '~> 7.1.3', '>= 7.1.3.2'
gem 'bcrypt', '~> 3.1', '>= 3.1.20'
gem 'bootsnap', require: false
gem 'jsonapi-serializer', '~> 2.2.0'
gem 'jwt', '~> 2.8', '>= 2.8.1'
gem 'pg', '~> 1.1'
gem 'puma', '>= 5.0'
gem 'tzinfo-data', '~> 1.2024', '>= 1.2024.1'
group :development, :test do
gem 'brakeman', '~> 6.0.1', require: false
gem 'debug'
gem 'factory_bot_rails', '~> 6.2.0'
gem 'faker', '~> 3.2.0'
gem 'rspec', '~> 3.13'
gem 'rspec-rails', '~> 6.1', '>= 6.1.1'
gem 'rubocop', '~> 1.61.0'
gem 'rubocop-performance', '~> 1.20.0'
gem 'rubocop-rails', '~> 2.23.1'
gem 'rubocop-rspec', '~> 2.27.0'
gem 'rubocop-shopify', '~> 2.15.1'
gem 'shoulda-matchers', '~> 5.3'
end