11source "https://rubygems.org"
2- git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
32
43ruby "your-ruby-version"
54
65# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7- gem "rails" , "~> 7.0.8" , ">= 7.0.8.7 "
6+ gem "rails" , "~> 7.1.0.beta1 "
87
98# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
109gem "sprockets-rails"
@@ -13,7 +12,7 @@ gem "sprockets-rails"
1312gem "sqlite3" , "~> 1.4"
1413
1514# Use the Puma web server [https://github.com/puma/puma]
16- gem "puma" , "~> 5.0"
15+ gem "puma" , ">= 5.0"
1716
1817# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
1918gem "importmap-rails"
@@ -28,7 +27,7 @@ gem "stimulus-rails"
2827gem "jbuilder"
2928
3029# Use Redis adapter to run Action Cable in production
31- # gem "redis", "~> 4.0"
30+ # gem "redis", ">= 4.0.1 "
3231
3332# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
3433# gem "kredis"
@@ -37,20 +36,17 @@ gem "jbuilder"
3736# gem "bcrypt", "~> 3.1.7"
3837
3938# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
40- gem "tzinfo-data" , platforms : %i[ mingw mswin x64_mingw jruby ]
39+ gem "tzinfo-data" , platforms : %i[ windows jruby ]
4140
4241# Reduces boot times through caching; required in config/boot.rb
4342gem "bootsnap" , require : false
4443
45- # Use Sass to process CSS
46- # gem "sassc-rails"
47-
4844# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
4945# gem "image_processing", "~> 1.2"
5046
5147group :development , :test do
5248 # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
53- gem "debug" , platforms : %i[ mri mingw x64_mingw ]
49+ gem "debug" , platforms : %i[ mri windows ]
5450end
5551
5652group :development do
@@ -62,6 +58,8 @@ group :development do
6258
6359 # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
6460 # gem "spring"
61+
62+ gem "error_highlight" , ">= 0.4.0" , platforms : [ :ruby ]
6563end
6664
6765group :test do
0 commit comments