-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (31 loc) · 1.01 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
gem 'bootsnap', '~> 1.18', '>= 1.18.4', require: false
gem 'pg', '~> 1.5.8'
gem 'puma', '~> 6.4', '>= 6.4.2'
gem 'rails', '~> 7.1', '>= 7.1.3'
group :development, :test do
gem 'bullet', '~> 7.2'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails', '~> 6.4', '>= 6.4.3'
gem 'ffaker', '~> 2.23'
gem 'i18n', '~> 1.14', '>= 1.14.5'
gem 'pry', '~> 0.14.2'
gem 'rspec-rails', '~> 7.0', '>= 7.0.1'
gem 'rubocop', '~> 1.66', '>= 1.66.1'
gem 'rubocop-factory_bot', '~> 2.26', '>= 2.26.1'
gem 'rubocop-rails', '~> 2.26', '>= 2.26.2'
gem 'rubocop-rspec', '~> 3.0', '>= 3.0.5'
gem 'rubocop-rspec_rails', '~> 2.30'
end
group :test do
gem 'shoulda-matchers', '~> 5.3'
gem 'simplecov', '~> 0.22.0'
end
group :development do
gem 'listen', '~> 3.9'
gem 'spring', '~> 4.2', '>= 4.2.1'
gem 'spring-watcher-listen', '~> 2.1'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]