| 1 | source "https://rubygems.org" |
| 2 | |
| 3 | ruby "3.3.2" |
| 4 | |
| 5 | # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" |
| 6 | gem "rails", "~> 7.1.3", ">= 7.1.3.4" |
| 7 | |
| 8 | # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] |
| 9 | gem "sprockets-rails" |
| 10 | |
| 11 | # Use postgresql as the database for Active Record |
| 12 | gem "pg", "~> 1.1" |
| 13 | |
| 14 | # Use the Puma web server [https://github.com/puma/puma] |
| 15 | gem "puma", ">= 5.0" |
| 16 | |
| 17 | # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] |
| 18 | gem "importmap-rails" |
| 19 | |
| 20 | # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] |
| 21 | gem "turbo-rails" |
| 22 | |
| 23 | # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] |
| 24 | gem "stimulus-rails" |
| 25 | |
| 26 | # Use Tailwind CSS [https://github.com/rails/tailwindcss-rails] |
| 27 | gem "tailwindcss-rails" |
| 28 | |
| 29 | # Build JSON APIs with ease [https://github.com/rails/jbuilder] |
| 30 | gem "jbuilder" |
| 31 | |
| 32 | # Use Redis adapter to run Action Cable in production |
| 33 | gem "redis", ">= 4.0.1" |
| 34 | |
| 35 | # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] |
| 36 | # gem "kredis" |
| 37 | |
| 38 | # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] |
| 39 | # gem "bcrypt", "~> 3.1.7" |
| 40 | |
| 41 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem |
| 42 | gem "tzinfo-data", platforms: %i[ windows jruby ] |
| 43 | |
| 44 | # Reduces boot times through caching; required in config/boot.rb |
| 45 | gem "bootsnap", 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 ] |
| 53 | end |
| 54 | |
| 55 | group :development do |
| 56 | # Use console on exceptions pages [https://github.com/rails/web-console] |
| 57 | gem "web-console" |
| 58 | |
| 59 | # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler] |
| 60 | # gem "rack-mini-profiler" |
| 61 | |
| 62 | # Speed up commands on slow machines / big apps [https://github.com/rails/spring] |
| 63 | # gem "spring" |
| 64 | end |
| 65 | |
| 66 | group :test do |
| 67 | # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] |
| 68 | gem "capybara" |
| 69 | gem "selenium-webdriver" |
| 70 | end |