This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
70 lines (60 loc) · 2.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '6.1.3'
# Use unicorn as production server
gem 'listen', '3.4.1'
gem 'unicorn', '5.8.0'
# Use Rack Timeout for handling hanging clients in production
gem 'rack-timeout', '0.6.0'
# Use jbuilder for easier JSON API creation
gem 'jbuilder', '2.11.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '1.7.2', require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS)
gem 'rack-cors', '1.1.1'
# Use PostgreSQL for production database
gem 'pg', '1.2.3'
# Allow has_secure_password
gem 'bcrypt', '3.1.16'
# Better indexes
gem 'ksuid', '0.2.0'
# Use CanCanCan for user authorization
gem 'cancancan', '3.2.1'
# Delayed::Job encapsulates the common pattern of asynchronously executing longer tasks in the background.
gem 'delayed_job_active_record', '4.1.5'
# Sentry
gem 'sentry-rails', '4.3.0'
gem 'sentry-ruby', '4.3.0'
group :development, :test do
# Use Puma as the app server
gem 'puma', '5.2.2'
# Use sqlite3 as the development database
gem 'sqlite3', '1.4.2'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', '11.1.3', platforms: %i[mri mingw x64_mingw]
# Use rspec with extensions for unit testing
gem 'rspec', '3.10.0', require: false
gem 'rspec-rails', '5.0.0'
# Use factory_bot_rails for defining and using factories
gem 'factory_bot_rails', '6.1.0'
# Use ffaker to generate fake data for unit testing
gem 'ffaker', '2.18.0'
# Use rubocop for linting
gem 'rubocop', '1.11.0', require: false
gem 'rubocop-rails', '2.9.1', require: false
gem 'rubocop-rspec', '2.2.0', require: false
# Use simplecov for test coverage viewing
gem 'simplecov', '0.21.2', require: false
# Maintain database consistency
gem 'database_consistency', require: false
end
group :development do
# Use spring for development speed up
gem 'letter_opener', '1.7'
gem 'spring', '2.1.1'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '1.2021.1', platforms: %i[mingw mswin x64_mingw jruby]