forked from makzu/lotcastingatemi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
121 lines (92 loc) · 3.06 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~> 7.1'
# Vite_Rails for more modern frontend bundling
gem 'vite_rails', '~> 3.0'
# Use postgres as the database for Active Record
gem 'pg', '~> 1.5'
# Use Puma as the app server
gem 'puma', '~> 6.4'
# For JSON responses
gem 'active_model_serializers', '~> 0.10'
# Pagination
gem 'pagy', '~> 6.0'
# For duplicating QCs and Battlegroups
gem 'deep_cloneable', '~> 3.2'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1'
gem 'bootsnap', '~> 1.18', require: false
# Authentication/Authorization
gem 'knock', '~> 2.2', git: 'https://github.com/makzu/knock'
gem 'pundit', '~> 2.3'
gem 'omniauth', '~> 2.1'
gem 'omniauth-google-oauth2', '~> 1.1'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
# Sorting
gem 'ranked-model', '~> 0.4.9'
# Timeout protection
# gem 'rack-timeout', '~> 0.6'
# Validate json fields like craft ratings, qc pools, etc
gem 'activerecord_json_validator', '~> 2.0'
gem 'email_validator', '~> 2.2'
# Automatic Eager Loading
gem 'goldiloader', '~> 5.2'
# For Heroku:
group :production do
gem 'rails_serve_static_assets', '~> 0.0.5'
end
# For Heroku Ruby metrics
gem 'barnes', '~>0.0.9'
gem 'scout_apm', '~> 5.4'
# logging
gem 'colorize', '~> 1.1'
gem 'lograge', '~> 0.12'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', '~> 11.1', platform: :mri
gem 'cypress-on-rails', '~> 1.17'
gem 'database_cleaner-active_record', '~> 2.1'
gem 'factory_bot_rails', '~> 6.4'
gem 'rspec-rails', '~> 6.1'
# Linting
gem 'rubocop', '~> 1.67', require: false
gem 'rubocop-performance', '~> 1.22', require: false
gem 'rubocop-rails', '~> 2.27', require: false
gem 'rubocop-rspec', '~> 2.31', require: false
# Security Tools
gem 'brakeman', '~> 6.1'
gem 'bundler-audit', '~> 0.9'
# profiling
gem 'derailed_benchmarks', '~> 2.1'
gem 'faker', '~> 3.2'
gem 'stackprof', '~> 0.2'
# Code Quality
gem 'reek', '~> 6.3', require: false
end
group :development do
# Better developer experience in vscode
gem 'ruby-lsp-rails', '~> 0.3', require: false
gem 'ruby-lsp-rspec', '~> 0.1', require: false
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '~> 3.8'
gem 'web-console', '~> 4.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'rack-cors', '~> 2.0', require: 'rack/cors'
gem 'rails_real_favicon', '~> 0.1'
gem 'spring', '~> 4.1'
gem 'spring-watcher-listen', '~> 2.1'
# Performance metrics
gem 'bullet', '~> 7.1'
# gem 'flamegraph'
# gem 'meta_request'
gem 'memory_profiler', '~> 1.1'
gem 'rack-mini-profiler', '~> 3.3', require: false
# gem 'stackprof'
end
group :test do
gem 'pundit-matchers', '~> 3.1'
gem 'simplecov', '~> 0.22', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '~> 1', platforms: %i[mingw mswin x64_mingw jruby]
ruby File.read('./.ruby-version').strip