-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
29 lines (22 loc) · 859 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby file: ".ruby-version"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.3.2"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri windows]
gem "factory_bot_rails", "~> 6.4.3"
gem "rspec-rails", "~> 6.1.0"
gem "rubocop", "~> 1.60", require: false
gem "rubocop-performance", "~> 1.20", require: false
gem "rubocop-rails", "~> 2.23", require: false
gem "rubocop-rspec", "~> 2.26", require: false
end
group :test do
gem "database_cleaner-active_record", "~> 2.1"
end