-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
123 lines (93 loc) · 2.62 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
122
123
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.0"
gem "rails", "~> 7.0.6"
# Cool stuff
gem "pg", "~> 1.1"
gem "puma", "~> 5.6"
gem "tzinfo-data", "~> 2.0.6", platforms: %i[mingw mswin x64_mingw jruby]
gem "bootsnap", "~> 1.16.0", require: false
# Enable importmaps support
gem "importmap-rails", "~> 1.2.1"
# Assets pipeline
gem "sprockets-rails", "~> 3.4.2"
# Hotwire
gem "turbo-rails", "~> 1.4.0"
gem "stimulus-rails", "~> 1.2.1"
# Components
gem "view_component", "~> 3.3.0"
gem "view_component-contrib", "~> 0.1.4"
# Redis support
gem "redis", "~> 5.0.6"
# Background jobs
gem "sidekiq", "~> 7.1.2"
# DSL for json structures
gem "jbuilder", "~> 2.11.5"
# Tailwind CSS support
gem "cssbundling-rails", "~> 1.2.0"
# Load environment variables
gem "dotenv-rails", "~> 2.8.1"
# Authentication and Devise
gem "bcrypt", "~> 3.1.19"
gem "devise", "~> 4.9.2"
gem "devise-two-factor", "~> 5.0.0"
gem "omniauth-rails_csrf_protection", "~> 1.0.1"
gem "omniauth-google-oauth2", "~> 1.1.1"
gem "omniauth-facebook", "~> 9.0.0"
gem "rqrcode", "~> 2.2.0"
# Authorization
gem "pundit", "~> 2.3.1"
# Annotate models with database schema
gem "annotate", "~> 3.2.0"
# Validations
gem "phonelib", "~> 0.8.1"
gem "validates_timeliness", "~> 7.0.0.beta1"
# File uploads
gem "shrine", "~> 3.5.0"
# ERB Formatter
gem "htmlbeautifier", "~> 1.4.2"
# For profiling
gem "rack-mini-profiler", "~> 3.1.0"
# For memory profiling
gem "memory_profiler", "~> 1.0.1"
# For call-stack profiling flamegraphs
gem "stackprof", "~> 0.2.25"
# Pagination
gem "pagy", "~> 6.0.4"
# Charts
gem "groupdate", "~> 6.3.0"
gem "chartkick", "~> 5.0.2"
# Calendar
gem "simple_calendar", "~> 2.4"
# Extended rake stats command
gem "rails_stats", "~> 1.0.2"
# Admin panel
gem "avo", "~> 2.39.0"
# Dynamically apply scopes
gem "has_scope", "~> 0.8.1"
# PDF generation
gem "prawn", "~> 2.4.0"
gem "prawn-table", "~> 0.2.2"
group :development, :test do
gem "debug", "~> 1.8.0", platforms: %i[mri mingw x64_mingw]
gem "faker", "~> 3.2.0"
gem "factory_bot_rails", "~> 6.2.0"
gem "rspec-rails", "~> 6.0.3"
gem "rubocop", "~> 1.54.1", require: false
gem "rubocop-performance", "~> 1.18.0", require: false
gem "rubocop-rails", "~> 2.20.2", require: false
gem "rubocop-rake", "~> 0.6.0", require: false
gem "rubocop-rspec", "~> 2.22.0", require: false
gem "simplecov", "~> 0.22.0", require: false
gem "rails-erd", "~> 1.7.2"
gem "shoulda-matchers", "~> 5.3.0"
gem "test-prof", "~> 1.0"
end
group :development do
gem "web-console", "~> 4.2.0"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end