-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathGemfile
More file actions
109 lines (81 loc) · 2.52 KB
/
Gemfile
File metadata and controls
109 lines (81 loc) · 2.52 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
source "https://rubygems.org"
ruby "4.0.1"
gem "rails", "~> 8.1.0"
gem "bootsnap", require: false
gem "sprockets-rails", "~> 3.2.2"
gem "trilogy", "2.9.0"
gem "uglifier"
gem "feature_flipper"
gem "vite_rails"
gem "jquery-rails"
gem "jbuilder", "~> 2.0"
gem "devise", "~> 5.0.3"
gem "draper"
gem "aws-sdk-s3"
gem "puma", "~> 6.0" # Add Puma as the web server
gem "cocoon", "~> 1.2.6"
gem "search_cop"
gem "httparty"
gem "will_paginate", "~> 3.1.7"
# gem "ckeditor", "~> 4.3.0" # removed given gh security scan results. still need a replacement.
gem "image_processing"
# Visit and event tracking
gem "ahoy_matey"
# To give group_by_day and similar methods to ActiveRecord relations
gem "groupdate"
# Charts and graphs
gem "chartkick"
# Business intelligence for database queries
gem "blazer"
# Geocoding for charts and other features
gem "geocoder"
# MaxMind GeoIP2 for AhoyMatey
gem "maxmind-geoip2", "~> 1.5", ">= 1.5.1"
# Stylesheet inlining for email
gem "premailer-rails" # applies any style tag classes to html elements for better email client compatibility
gem "bcrypt", "~> 3.1", ">= 3.1.22"
gem "json", ">= 2.6", "< 3" # or simply: gem "json", "~> 2.7"
gem "ostruct"
gem "simple_form"
gem "country_select"
gem "turbo-rails", "~> 2.0"
gem "stimulus-rails", "~> 1.3"
gem "positioning", "~> 0.4.7"
gem "action_policy", "~> 0.7.6"
gem "active_storage_validations", "~> 3.0"
gem "solid_cache"
group :development do
gem "rubocop-rails-omakase", require: false
end
group :development, :test do
gem "better_errors"
# gem "binding_of_caller" # Temporarily commented - doesn't support Ruby 4.0.1
# FIXME: Workaround for Ruby 4.0+
# https://github.com/banister/binding_of_caller/pull/90
gem "binding_of_caller", github: "kivikakk/binding_of_caller", branch: "push-yrnnzolypxun"
gem "brakeman", "~> 8.0.1", require: false
gem "bundler-audit", require: false
gem "capybara", "~> 3.36"
gem "dotenv-rails"
gem "faker"
gem "factory_bot_rails"
gem "launchy"
gem "listen"
gem "pry-coolline"
gem "pry-rails"
gem "rspec-rails"
gem "simplecov", require: false
gem "simplecov_json_formatter", require: false
gem "selenium-webdriver"
gem "shoulda-matchers", require: false
gem "debug", "~> 1.11"
gem "bullet"
end
gem "rack-mini-profiler", "~> 4.0"
gem "solid_queue", "~> 1.3"
# Observability (production-only via initializer guard)
gem "opentelemetry-sdk"
gem "opentelemetry-exporter-otlp"
gem "opentelemetry-instrumentation-all"
# Error monitoring (production-only via initializer guard)
gem "honeybadger", "~> 6.4"