View raw

1 source "https://rubygems.org" 2 3 # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" 4 gem "rails", "~> 8.0.2", ">= 8.0.2.1" 5 # The modern asset pipeline for Rails [https://github.com/rails/propshaft] 6 gem "propshaft" 7 # Use sqlite3 as the database for Active Record 8 gem "sqlite3", ">= 2.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 20 # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] 21 # gem "bcrypt", "~> 3.1.7" 22 23 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 24 gem "tzinfo-data", platforms: %i[ windows jruby ] 25 26 # Use the database-backed adapters for Rails.cache, Active Job, and Action Cable 27 gem "solid_cache" 28 gem "solid_queue" 29 gem "solid_cable" 30 31 # Reduces boot times through caching; required in config/boot.rb 32 gem "bootsnap", require: false 33 34 # Deploy this application anywhere as a Docker container [https://kamal-deploy.org] 35 gem "kamal", require: false 36 37 # Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/] 38 gem "thruster", require: false 39 40 # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] 41 # gem "image_processing", "~> 1.2" 42 43 group :development, :test do 44 # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem 45 gem "debug", platforms: %i[ mri windows ], require: "debug/prelude" 46 47 # Static analysis for security vulnerabilities [https://brakemanscanner.org/] 48 gem "brakeman", require: false 49 50 # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] 51 gem "rubocop-rails-omakase", require: false 52 end 53 54 group :development do 55 # Use console on exceptions pages [https://github.com/rails/web-console] 56 gem "web-console" 57 end 58 59 group :test do 60 # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] 61 gem "capybara" 62 gem "selenium-webdriver" 63 end 64 65 gem "chartkick", "~> 5.2" 66