-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (34 loc) · 915 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
31
32
33
34
35
36
37
38
39
40
41
source 'https://rubygems.org'
ruby '2.7.2'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'dotenv-rails'
gem 'faker'
gem 'interactor', '~> 3.0'
gem 'kaminari'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem 'rails', '~> 6.1.1'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
group :development, :test do
gem 'annotate'
gem 'brakeman'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'rails_best_practices', '~> 1.20'
gem 'reek'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-rails'
gem 'rubocop-rspec'
end
group :test do
gem 'factory_bot_rails'
gem 'shoulda-matchers', '~> 4.0'
gem 'simplecov', require: false
end
group :development do
gem 'listen', '~> 3.3'
gem 'spring'
end