ぼざクリ タグ広場 https://hub.nizika.monster
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.
 
 
 
 
 
 

54 lines
1.8 KiB

  1. source "https://rubygems.org"
  2. # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
  3. gem "rails", "~> 8.0.2"
  4. # Use sqlite3 as the database for Active Record
  5. gem "sqlite3", ">= 2.1"
  6. # Use the Puma web server [https://github.com/puma/puma]
  7. gem "puma", ">= 5.0"
  8. # Build JSON APIs with ease [https://github.com/rails/jbuilder]
  9. # gem "jbuilder"
  10. # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
  11. # gem "bcrypt", "~> 3.1.7"
  12. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  13. gem "tzinfo-data", platforms: %i[ windows jruby ]
  14. # Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
  15. gem "solid_cache"
  16. gem "solid_queue"
  17. gem "solid_cable"
  18. # Reduces boot times through caching; required in config/boot.rb
  19. gem "bootsnap", require: false
  20. # Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
  21. gem "kamal", require: false
  22. # Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
  23. gem "thruster", require: false
  24. # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
  25. # gem "image_processing", "~> 1.2"
  26. # Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin Ajax possible
  27. gem "rack-cors"
  28. gem 'jwt'
  29. gem 'sprockets-rails'
  30. group :development, :test do
  31. # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
  32. gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
  33. # Static analysis for security vulnerabilities [https://brakemanscanner.org/]
  34. gem "brakeman", require: false
  35. # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
  36. gem "rubocop-rails-omakase", require: false
  37. end
  38. gem "mysql2", "~> 0.5.6"