|
| 1 | +source "https://rubygems.org" |
| 2 | + |
| 3 | +# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" |
| 4 | +gem "rails", "~> 8.0.2" |
| 5 | +# The modern asset pipeline for Rails [https://github.com/rails/propshaft] |
| 6 | +gem "propshaft" |
| 7 | +# Use postgresql as the database for Active Record |
| 8 | +gem "pg", "~> 1.1" |
| 9 | +# Use the Puma web server [https://github.com/puma/puma] |
| 10 | +gem "puma", ">= 5.0" |
| 11 | +# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] |
| 12 | +gem "importmap-rails" |
| 13 | +# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] |
| 14 | +gem "turbo-rails" |
| 15 | +# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] |
| 16 | +gem "stimulus-rails" |
| 17 | +# Build JSON APIs with ease [https://github.com/rails/jbuilder] |
| 18 | +gem "jbuilder" |
| 19 | +gem "slim" |
| 20 | +gem "kaminari" |
| 21 | + |
| 22 | +# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] |
| 23 | +gem "bcrypt", "~> 3.1" |
| 24 | + |
| 25 | +# OmniAuth for Google OIDC |
| 26 | +gem "omniauth" |
| 27 | +gem "omniauth-rails_csrf_protection" |
| 28 | +gem "omniauth-google-oauth2" |
| 29 | + |
| 30 | +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem |
| 31 | +gem "tzinfo-data", platforms: %i[ windows jruby ] |
| 32 | + |
| 33 | +# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable |
| 34 | +gem "solid_cache" |
| 35 | +gem "solid_queue" |
| 36 | +gem "solid_cable" |
| 37 | + |
| 38 | +# Reduces boot times through caching; required in config/boot.rb |
| 39 | +gem "bootsnap", require: false |
| 40 | + |
| 41 | +# Deploy this application anywhere as a Docker container [https://kamal-deploy.org] |
| 42 | +gem "kamal", require: false |
| 43 | + |
| 44 | +# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/] |
| 45 | +gem "thruster", require: false |
| 46 | + |
| 47 | +# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] |
| 48 | +# gem "image_processing", "~> 1.2" |
| 49 | + |
| 50 | +group :development, :test do |
| 51 | + # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem |
| 52 | + gem "debug", platforms: %i[ mri windows ], require: "debug/prelude" |
| 53 | + |
| 54 | + # Static analysis for security vulnerabilities [https://brakemanscanner.org/] |
| 55 | + gem "brakeman", require: false |
| 56 | + |
| 57 | + # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] |
| 58 | + gem "rubocop-rails-omakase", require: false |
| 59 | + |
| 60 | + gem "capybara" |
| 61 | + gem "selenium-webdriver" |
| 62 | + |
| 63 | + gem "rspec-rails" |
| 64 | + gem "factory_bot_rails" |
| 65 | + gem "faker" |
| 66 | + gem "shoulda-matchers" |
| 67 | +end |
| 68 | + |
| 69 | +group :development do |
| 70 | + # Use console on exceptions pages [https://github.com/rails/web-console] |
| 71 | + gem "web-console" |
| 72 | + |
| 73 | + # Capture emails in-browser during development |
| 74 | + gem "letter_opener" |
| 75 | + gem "letter_opener_web" |
| 76 | +end |
0 commit comments