You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.4 KiB

9 months ago
9 months ago
  1. source 'https://rubygems.org'
  2. ruby '3.1.2'
  3. # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
  4. gem 'rails', '~> 7.1.2'
  5. # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
  6. gem 'sprockets-rails'
  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. # Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
  18. gem 'tailwindcss-rails'
  19. # Use Redis adapter to run Action Cable in production
  20. # gem "redis", ">= 4.0.1"
  21. # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
  22. # gem "kredis"
  23. # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
  24. # gem "bcrypt", "~> 3.1.7"
  25. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  26. gem 'tzinfo-data', platforms: %i[mswin mswin64 mingw x64_mingw jruby]
  27. # Reduces boot times through caching; required in config/boot.rb
  28. gem 'bootsnap', require: false
  29. # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
  30. # gem "image_processing", "~> 1.2"
  31. group :development, :test do
  32. # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
  33. gem 'debug', platforms: %i[mri mswin mswin64 mingw x64_mingw]
  34. end
  35. group :development do
  36. # Use console on exceptions pages [https://github.com/rails/web-console]
  37. gem 'web-console'
  38. # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
  39. # gem "rack-mini-profiler"
  40. # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
  41. # gem "spring"
  42. gem 'error_highlight', '>= 0.4.0', platforms: [:ruby]
  43. gem 'rainbow'
  44. gem 'rubocop', require: false
  45. gem 'rubocop-packaging'
  46. gem 'rubocop-performance'
  47. gem 'rubocop-rspec'
  48. gem 'rubocop-shopify'
  49. gem 'rubocop-thread_safety'
  50. gem 'ruby-lsp-rails'
  51. end
  52. group :test do
  53. # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
  54. gem 'capybara'
  55. gem 'selenium-webdriver'
  56. end