-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
76 lines (60 loc) · 2.27 KB
/
Copy pathGemfile
File metadata and controls
76 lines (60 loc) · 2.27 KB
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
source "https://rubygems.org"
gem "rails", "~> 8.1"
gem "propshaft", "~> 1.3"
gem "sqlite3", "~> 2.9"
gem "puma", "~> 8.0"
gem "importmap-rails", "~> 2.2"
gem "turbo-rails", "~> 2.0"
gem "stimulus-rails", "~> 1.3"
gem "tailwindcss-rails", "~> 4.4"
gem "bcrypt", "~> 3.1"
gem "omniauth-google-oauth2", "~> 1.2"
gem "omniauth-rails_csrf_protection", "~> 1.0"
gem "rotp", "~> 6.3"
gem "rqrcode", "~> 3.0"
# Authorization
gem "pundit", "~> 2.5"
# Pagination
gem "pagy", "~> 43.5"
# Locale data for dates, numbers, currencies across all languages
gem "rails-i18n", "~> 8.1"
# Prevent dangerous migrations (missing null constraints, locking migrations, etc.)
gem "strong_migrations", "~> 2.7"
# Rate limiting (brute force protection on login)
gem "rack-attack", "~> 6.8"
# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
gem "solid_cache", "~> 1.0"
gem "solid_queue", "~> 1.4"
gem "solid_cable", "~> 3.0"
gem "bootsnap", "~> 1.23", require: false
gem "kamal", "~> 2.11", require: false
gem "thruster", "~> 0.1", require: false
gem "image_processing", "~> 1.2"
gem "heroicons", "~> 1.0", require: "heroicon"
# Active Storage attachment validations (content_type, size)
gem "active_storage_validations", "~> 3.0"
# Zip archive of a request's attachments (admin download)
gem "rubyzip", "~> 3.0", require: "zip"
# Payments — Stripe API client (signed webhooks, payment intents)
gem "stripe", "~> 15.0"
# Web Push notifications (VAPID)
gem "web-push", "~> 3.0"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ windows jruby ]
group :development, :test do
gem "debug", "~> 1.11", platforms: %i[ mri windows ], require: "debug/prelude"
gem "bundler-audit", "~> 0.9", require: false
gem "brakeman", "~> 8.0", require: false
gem "rubocop-rails-omakase", "~> 1.1", require: false
end
group :development do
gem "web-console", "~> 4.3"
gem "letter_opener", "~> 1.10"
gem "hotwire-spark", "~> 0.1"
gem "bullet", "~> 8.1"
end
group :test do
gem "capybara", "~> 3.40"
gem "selenium-webdriver", "~> 4.43"
gem "webmock", "~> 3.26"
end