-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathGemfile
More file actions
246 lines (171 loc) · 5.9 KB
/
Gemfile
File metadata and controls
246 lines (171 loc) · 5.9 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "4.0.1"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 8.1.2"
# Use postgresql as the database for Active Record
gem "pg"
# Use Puma as rollback ballast while Falcon is rolled out.
gem "puma", "~> 6.6"
gem "falcon"
gem "falcon-rails"
# Reduces boot times through caching
gem "bootsnap", ">= 1.18.0", require: false
gem "json", ">= 2.19.2"
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder", "~> 2.11"
# Use devise for authentication
gem "devise"
gem "webauthn"
gem "rotp"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[windows jruby]
# Add ostruct for Ruby 3.5 compatibility with shoulda-callback-matchers
gem "ostruct"
gem "tsort"
# Rails 8 solid adapters for improved performance
gem "solid_cache"
gem "solid_cable"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
gem "image_processing", ">= 1.2"
# Modern frontend bundling with Vite
gem "vite_rails", "~> 3.0"
# Propshaft for asset pipeline (lighter than Sprockets)
gem "propshaft"
# Deployment with Kamal
gem "kamal", require: false
# Lightweight alternative to countries gem
gem "iso_country_codes"
# #--- gems for server & infra configuration ---##
gem "dotenv-rails"
gem "foreman"
# Memory allocator is handled by Docker/system level
# Add Ahoy for event tracking
gem "ahoy_matey"
# Security scanning
gem "brakeman", require: false
# currency list and conversion
gem "money"
# aws storage account
gem "aws-sdk-s3", require: false
# Search gems
gem "pg_search", "~> 2.3"
# For Soft deletion
gem "discard", "~> 1.2"
# Role management library with resource scoping
gem "rolify", "~> 6.0"
# OAuth Gems
gem "omniauth-google-oauth2", "~> 1.0"
gem "omniauth-github", "~> 2.0"
gem "omniauth-rails_csrf_protection", "~> 1.0", require: false
# Pundit gem for user authorization
gem "pundit", "~> 2.2"
# Auditing for tracking changes
gem "audited", "~> 5.0"
# Data migration gem to migrate data alongside schema changes
gem "data_migrate"
# pagy for Pagination
gem "pagy", "~> 8.0"
gem "nokogiri", ">= 1.19.1"
# Manage application specific business logic. https://github.com/AaronLasseigne/active_interaction
gem "active_interaction"
# For stripe payments
gem "stripe"
# Background job processing adapter and dashboard
gem "mission_control-jobs"
gem "solid_queue", "~> 0.6"
# Database search and optimization (Ankane's gems)
gem "pghero" # PostgreSQL performance dashboard
gem "dexter" # Automatic index suggestions
# PDF generator - using Ferrum PDF for modern Chrome-based PDF generation
gem "ferrum_pdf", ">= 3.0.0"
gem "activerecord-import"
# For finding the vulnerabilities in the gems
gem "bundler-audit", require: false
gem "ruby_audit", require: false
# For reporting messages, exceptions, and tracing events.
gem "sentry-rails"
gem "sentry-ruby", "~> 5.17"
gem "rubyzip"
gem "httparty"
gem "observer"
# Faraday HTTP client adapter for Faraday 2.0+
gem "faraday", ">= 2.14.1"
gem "faraday-net_http"
# Country information and timezones
gem "countries", "~> 6.0"
# Use google calendar for integration with Miru
gem "google-api-client", require: "google/apis/calendar_v3"
group :development, :test, :ci do
# See https://edgeguides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", ">= 1.0.0", platforms: %i[mri windows]
# Add Rubocop to lint and format Ruby code
gem "rubocop", ">= 1.85.1", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-capybara", require: false
gem "rubocop-factory_bot", require: false
gem "rubocop-thread_safety", require: false
gem "reek", require: false
# Use RSpec as the testing framework
gem "rspec-rails", "~> 8.0"
# For JUnit test output for CI
gem "rspec_junit_formatter"
# Simple one-liner tests for common Rails functionality
gem "shoulda-callback-matchers", "~> 1.1.1"
gem "shoulda-matchers", "~> 5.1"
# Use factory-bot to replace fixtures
gem "factory_bot_rails"
# Use Faker for fake data
gem "faker"
# Tapioca for Sorbet type checking [https://github.com/Shopify/tapioca]
gem "tapioca", require: false
gem "sorbet-runtime"
gem "spoom", require: false
# Added rails controller to use render_template
gem "rails-controller-testing", "~> 1.0", ">= 1.0.5"
# To record response of outgoing API calls
gem "vcr", "~> 6.4.0"
gem "webmock", "~> 3.26.2"
gem "i18n-tasks", require: false
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console", ">= 4.1.0"
gem "letter_opener"
gem "letter_opener_web"
gem "nkf"
end
group :test, :ci do
gem "capybara", ">= 3.26"
gem "cuprite"
gem "falcon-capybara"
# Use Codecov for code coverage analysis
gem "simplecov", require: false
# Strategies for cleaning databases in Ruby.
gem "database_cleaner", "~> 2.0"
gem "hash_dot"
gem "rspec-retry"
# Enhanced RSpec reporting and formatting
gem "rspec-instafail", "~> 1.0" # Show failures immediately
gem "super_diff", "~> 0.10" # Better diff output
gem "test-prof", "~> 1.3" # Performance profiling for tests
end
# https://github.com/grosser/parallel_tests
gem "parallel_tests", group: [:development, :test]
# CORS: https://github.com/cyu/rack-cors
gem "rack-cors", "2.0.0"
gem "rack-attack"
# Administrate dashboard - removed
# gem "administrate"
# YAML parser - Ruby 4.0.1 includes Psych 5 by default
# Uncommenting would force a specific version if needed
# gem "psych", "~> 5"
# Email delivery service
gem "postmark-rails"
# https://github.com/ankane/strong_migrations
gem "strong_migrations"
gem "redis", "~> 5.4"
gem "dotenv", groups: [:development, :test]