Gemfile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. source "https://rubygems.org"
  2. # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
  3. gem "rails", "~> 8.0.3"
  4. # The modern asset pipeline for Rails [https://github.com/rails/propshaft]
  5. gem "propshaft"
  6. # Use sqlite3 as the database for Active Record
  7. gem "sqlite3", ">= 2.1"
  8. # Use the Puma web server [https://github.com/puma/puma]
  9. gem "puma", ">= 5.0"
  10. # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
  11. gem "importmap-rails"
  12. # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
  13. gem "turbo-rails"
  14. # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
  15. gem "stimulus-rails"
  16. # Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
  17. gem "tailwindcss-rails"
  18. # Build JSON APIs with ease [https://github.com/rails/jbuilder]
  19. gem "jbuilder"
  20. # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
  21. # gem "bcrypt", "~> 3.1.7"
  22. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  23. gem "tzinfo-data", platforms: %i[ windows jruby ]
  24. # Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
  25. gem "solid_cache"
  26. gem "solid_queue"
  27. gem "solid_cable"
  28. # Reduces boot times through caching; required in config/boot.rb
  29. gem "bootsnap", require: false
  30. # Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
  31. gem "kamal", require: false
  32. # Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
  33. gem "thruster", require: false
  34. # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
  35. # gem "image_processing", "~> 1.2"
  36. group :development, :test do
  37. # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
  38. gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
  39. # Static analysis for security vulnerabilities [https://brakemanscanner.org/]
  40. gem "brakeman", require: false
  41. # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
  42. gem "rubocop-rails-omakase", require: false
  43. end
  44. group :development do
  45. # Use console on exceptions pages [https://github.com/rails/web-console]
  46. gem "web-console"
  47. end
  48. group :test do
  49. # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
  50. gem "capybara"
  51. gem "selenium-webdriver"
  52. end