1
1
source "https://rubygems.org"
2
- git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
3
2
4
3
ruby "your-ruby-version"
5
4
6
5
# 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 "
8
7
9
8
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
10
9
gem "sprockets-rails"
@@ -13,7 +12,7 @@ gem "sprockets-rails"
13
12
gem "sqlite3" , "~> 1.4"
14
13
15
14
# Use the Puma web server [https://github.com/puma/puma]
16
- gem "puma" , "~> 5.0"
15
+ gem "puma" , ">= 5.0"
17
16
18
17
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
19
18
gem "importmap-rails"
@@ -28,7 +27,7 @@ gem "stimulus-rails"
28
27
gem "jbuilder"
29
28
30
29
# Use Redis adapter to run Action Cable in production
31
- # gem "redis", "~> 4.0"
30
+ # gem "redis", ">= 4.0.1 "
32
31
33
32
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
34
33
# gem "kredis"
@@ -37,20 +36,17 @@ gem "jbuilder"
37
36
# gem "bcrypt", "~> 3.1.7"
38
37
39
38
# 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 ]
41
40
42
41
# Reduces boot times through caching; required in config/boot.rb
43
42
gem "bootsnap" , require : false
44
43
45
- # Use Sass to process CSS
46
- # gem "sassc-rails"
47
-
48
44
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
49
45
# gem "image_processing", "~> 1.2"
50
46
51
47
group :development , :test do
52
48
# 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 ]
54
50
end
55
51
56
52
group :development do
@@ -62,6 +58,8 @@ group :development do
62
58
63
59
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
64
60
# gem "spring"
61
+
62
+ gem "error_highlight" , ">= 0.4.0" , platforms : [ :ruby ]
65
63
end
66
64
67
65
group :test do
0 commit comments