-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
66 lines (49 loc) · 1.15 KB
/
Copy pathGemfile
File metadata and controls
66 lines (49 loc) · 1.15 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
source "https://rubygems.org"
gem "rails", "~> 8.1.2"
gem "pg", "~> 1.1"
gem "puma", ">= 5.0"
# Authentication
gem "devise"
# Inertia.js + Vite
gem "inertia_rails"
gem "vite_rails"
# Git operations
gem "rugged"
# Background jobs
gem "good_job"
# Markdown rendering
gem "commonmarker"
# Caching & real-time
gem "solid_cache"
gem "solid_cable"
# Collaborative editing
gem "y-rb"
# JSON APIs
gem "jbuilder"
# Windows timezone data
gem "tzinfo-data", platforms: %i[windows jruby]
# Boot performance
gem "bootsnap", require: false
# Deployment
gem "kamal", require: false
gem "thruster", require: false
# Active Storage image processing
gem "image_processing", "~> 1.2"
group :development, :test do
gem "debug", platforms: %i[mri windows], require: "debug/prelude"
gem "bundler-audit", require: false
gem "brakeman", require: false
# Linting
gem "rubocop", require: false
gem "rubocop-rails-omakase", require: false
gem "rubocop-rails", require: false
gem "rubocop-minitest", require: false
gem "rubocop-performance", require: false
end
group :development do
gem "web-console"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
end