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.

80 lines
2.4 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. source "https://rubygems.org"
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby "3.1.4"
  4. # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
  5. gem "rails", "~> 7.0.5"
  6. # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
  7. gem "sprockets-rails"
  8. # Use sqlite3 as the database for Active Record
  9. gem "sqlite3", "~> 1.4"
  10. # Use the Puma web server [https://github.com/puma/puma]
  11. gem "puma", "~> 5.0"
  12. # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
  13. gem "importmap-rails"
  14. # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
  15. gem "turbo-rails"
  16. # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
  17. gem "stimulus-rails"
  18. # Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
  19. gem "tailwindcss-rails"
  20. # Build JSON APIs with ease [https://github.com/rails/jbuilder]
  21. gem "jbuilder"
  22. # Use Redis adapter to run Action Cable in production
  23. # gem "redis", "~> 4.0"
  24. # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
  25. # gem "kredis"
  26. # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
  27. # gem "bcrypt", "~> 3.1.7"
  28. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  29. gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
  30. # Reduces boot times through caching; required in config/boot.rb
  31. gem "bootsnap", require: false
  32. # Semantic logger for colorized output logging
  33. gem "amazing_print"
  34. gem "rails_semantic_logger"
  35. # Use Sass to process CSS
  36. # gem "sassc-rails"
  37. # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
  38. # gem "image_processing", "~> 1.2"
  39. group :development, :test do
  40. # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
  41. gem "debug", platforms: %i[ mri mingw x64_mingw ]
  42. end
  43. group :development do
  44. # Use console on exceptions pages [https://github.com/rails/web-console]
  45. gem "web-console"
  46. # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
  47. # gem "rack-mini-profiler"
  48. # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
  49. # gem "spring"
  50. gem "rails_live_reload"
  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. gem "webdrivers"
  57. end