File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,18 +4,18 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44ruby "3.2.2"
55
66# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7- gem "rails" , "~> 7.0.6 "
7+ gem "rails" , "~> 8.1.2 "
88
99# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
1010gem "sprockets-rails"
1111
1212# Use sqlite3 as the database for Active Record
13- gem "sqlite3" , "~> 1.4 "
13+ gem "sqlite3" , "~> 2.9.0 "
1414
1515gem 'webpacker' , '~> 5.x.x'
1616
1717# Use the Puma web server [https://github.com/puma/puma]
18- gem "puma" , "~> 5 .0"
18+ gem "puma" , "~> 7.2 .0"
1919
2020# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
2121gem "importmap-rails"
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ This repository contains a sample full-stack application demonstrating how to di
6060
6161
6262## Output
63- 
63+ 
6464
6565## Troubleshooting
6666- **Version error**: Check and install the current version as by prerequistes.
Original file line number Diff line number Diff line change 6767
6868 # Uncomment if you wish to allow Action Cable access from any origin.
6969 # config.action_cable.disable_request_forgery_protection = true
70+ Rails . application . configure do
71+ # ...other settings...
72+
73+ # Force Sprockets to keep its cache in memory in dev
74+ config . assets . configure do |env |
75+ env . cache = Sprockets ::Cache ::MemoryStore . new
76+ end
77+ end
7078end
You can’t perform that action at this time.
0 commit comments