-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
89 lines (68 loc) · 2.15 KB
/
Copy pathGemfile
File metadata and controls
89 lines (68 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
source "https://rubygems.org"
gem "rails", "~> 8.1.3"
# DB
gem "pg", "~> 1.6"
# Web server
gem "puma", ">= 5.0"
# Assets
gem "propshaft"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
# JSON
gem "blueprinter"
gem "oj"
# CORS support
gem "rack-cors", "~> 3.0"
# HAML
gem "haml-rails", "~> 3.1"
gem "haml", "~> 7.4"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ windows jruby ]
# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
gem "solid_cache"
gem "solid_queue"
gem "solid_cable"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
gem "kamal", require: false
# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
gem "thruster", require: false
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
gem "image_processing", "~> 1.2"
# Dry gems for operations pattern
gem "dry-validation", "~> 1.10"
gem "dry-monads", "~> 1.10"
# Simple, Heroku-friendly Rails app configuration using ENV and a single YAML file
gem "figaro"
# Authentication
gem "devise", "~> 5.0"
gem "jwt", "~> 3.2"
gem "omniauth-google-oauth2", "~> 1.2"
gem "omniauth-rails_csrf_protection"
gem "pagy", "~> 43.6"
group :development, :test do
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
gem "bundler-audit", require: false
gem "brakeman", require: false
gem "rubocop-rails-omakase", require: false
gem "rspec-rails", "~> 8.0"
gem "factory_bot_rails", "~> 6.4"
gem "faker", "~> 3.8"
end
group :development do
gem "web-console"
gem "html2haml"
gem "better_errors"
gem "binding_of_caller"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "shoulda-matchers", "~> 7.0"
gem "database_cleaner-active_record", "~> 2.2"
gem "simplecov", "~> 0.22", require: false
end