-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
112 lines (94 loc) · 2.76 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.3.6"
# -------- Core Rails --------
gem "rails", ">= 7.1.3.2", "< 7.3"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Use pg as the database for Active Record
gem "pg", "~> 1.1"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mswin mswin64 mingw x64_mingw jruby]
# -------- Frontend & Asset Pipeline --------
# Replace the asset pipeline with Propshaft
gem "sprockets-rails"
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"
# -------- Hotwire Stack --------
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# -------- Authentication & Authorization --------
gem "devise", "~> 4.9"
gem "pundit"
# -------- UI Components & Pagination --------
gem "view_component", "~> 3.12"
gem "kaminari"
gem "pagy", "~> 8.4"
# -------- Security & Best Practices --------
gem "secure_headers"
gem "strong_migrations"
# -------- Code Formatting --------
gem "erb-formatter", "~> 0.7.2"
# Development & Test Environment
group :development, :test do
# Debugging
gem "byebug"
gem "debug", platforms: %i[mri mswin mswin64 mingw x64_mingw]
# Testing
gem "factory_bot_rails"
gem "faker"
gem "pundit-matchers"
gem "rails-controller-testing"
gem "rspec"
gem "rspec-rails"
# Code Quality
gem "bullet"
gem "reek"
gem "rails_best_practices"
gem "fasterer"
# Rubocop & Extensions
gem "rubocop"
gem "rubocop-capybara"
gem "rubocop-factory_bot"
gem "rubocop-i18n"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "rubocop-rspec_rails"
gem "rubocop-thread_safety"
gem "rubocop-rails-omakase"
end
group :development do
# Code Analysis & Documentation
gem "annotate"
gem "solargraph"
gem "solargraph-rails"
# Security Analysis
gem "brakeman"
gem "bundler-audit"
# Development Tools
gem "web-console"
gem "i18n-tasks", "~> 1.0.13"
gem "rails_live_reload"
end
group :test do
# Integration Testing
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
# Test Helpers & Coverage
gem "shoulda-matchers", "~> 6.0"
gem "simplecov", require: false
gem "simplecov-formatter-badge", require: false
end
# -------- Commented out gems --------
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"