1
1
source "https://rubygems.org"
2
2
3
3
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
4
- gem "rails" , "~> 7.2.2" , ">= 7.2.2.1 "
5
- # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails ]
6
- gem "sprockets-rails "
4
+ gem "rails" , "~> 8.0.0.beta1 "
5
+ # The modern asset pipeline for Rails [https://github.com/rails/propshaft ]
6
+ gem "propshaft "
7
7
# Use sqlite3 as the database for Active Record
8
- gem "sqlite3" , ">= 1.4 "
8
+ gem "sqlite3" , ">= 2.1 "
9
9
# Use the Puma web server [https://github.com/puma/puma]
10
10
gem "puma" , ">= 5.0"
11
11
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
@@ -16,21 +16,27 @@ gem "turbo-rails"
16
16
gem "stimulus-rails"
17
17
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
18
18
gem "jbuilder"
19
- # Use Redis adapter to run Action Cable in production
20
- # gem "redis", ">= 4.0.1"
21
-
22
- # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
23
- # gem "kredis"
24
19
25
20
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
26
21
# gem "bcrypt", "~> 3.1.7"
27
22
28
23
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
29
24
gem "tzinfo-data" , platforms : %i[ windows jruby ]
30
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
31
# Reduces boot times through caching; required in config/boot.rb
32
32
gem "bootsnap" , require : false
33
33
34
+ # Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
35
+ gem "kamal" , ">= 2.0.0.rc2" , 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
+
34
40
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
35
41
# gem "image_processing", "~> 1.2"
36
42
0 commit comments