-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 824 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 824 Bytes
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'rails', '~> 6.1', '>= 6.1.3.2'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'dotenv-rails', '~> 2.7', '>= 2.7.6'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'faker', '~> 2.15', '>= 2.15.1'
gem 'rspec-rails', '~> 5.0', '>= 5.0.1'
gem 'factory_bot_rails', '~> 6.1'
end
group :test do
gem 'rubocop-rails', '~> 2.9', '>= 2.9.1'
gem 'rubocop-rspec', '~> 2.1'
gem 'simplecov', '~> 0.21.0', require: false
gem 'webmock', '~> 3.11'
end
group :development do
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]