-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathGemfile
More file actions
61 lines (46 loc) · 1.29 KB
/
Gemfile
File metadata and controls
61 lines (46 loc) · 1.29 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
source "https://rubygems.org"
ruby "3.4.8"
gem "rails", "~> 8.1.3"
# Framework
gem "bootsnap", require: false
gem "puma", "~> 7.2"
# Configuration
gem "dotenv"
# Database
gem "pg", "~> 1.6"
# Assets
gem "dartsass-rails", "~> 0.5.1"
gem "propshaft"
# Authentication
gem "jwt"
# Forms
gem "simple_form", "~> 5.4"
# Content processing
gem "diffy"
gem "kramdown"
gem "premailer-rails"
# Integrations
gem "aws-sdk-sqs", "~> 1.115"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
gem "rspec-rails"
gem "factory_bot_rails", "~> 6.5"
# Audits gems for known security defects (use config/bundler-audit.yml to ignore issues)
gem "bundler-audit", require: false
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rspec_rails", require: false
end
group :test do
gem "webmock"
gem "rspec-github", require: false
end
group :development do
gem "dockerfile-rails", ">= 1.2"
gem "letter_opener"
gem "web-console"
end