-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
30 lines (23 loc) · 853 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.1'
gem 'bootsnap', require: false
gem 'pg', '~> 1.1', '>= 1.4.6'
gem 'puma', '~> 6.1', '>= 6.1.1'
gem 'rails', '~> 7.0.4', '>= 7.0.4.3'
gem 'sidekiq', '~> 7.0', '>= 7.0.7'
gem 'tzinfo-data', platforms: %i[ mingw mswin x64_mingw jruby ]
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[ mri mingw x64_mingw ]
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
end
group :development do
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem 'spring'
gem 'rubocop', '~> 1.48', '>= 1.48.1', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
end