3
3
source 'https://rubygems.org'
4
4
git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
5
5
6
- ruby '3.0.0 '
6
+ ruby '3.2.2 '
7
7
8
8
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
9
- gem 'rails' , '~> 7.0.0.alpha2'
9
+ gem 'rails' , '~> 7.0.8'
10
+
11
+ # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
12
+ gem 'sprockets-rails'
10
13
11
14
# Use postgresql as the database for Active Record
12
15
gem 'pg' , '~> 1.1'
@@ -15,61 +18,66 @@ gem 'pg', '~> 1.1'
15
18
gem 'puma' , '~> 5.0'
16
19
17
20
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
18
- gem 'importmap-rails' , '>= 0.3.4'
21
+ gem 'importmap-rails'
19
22
20
23
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
21
- gem 'turbo-rails' , '>= 0.7.11'
24
+ gem 'turbo-rails'
22
25
23
26
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
24
- gem 'stimulus-rails' , '>= 0.4.0'
27
+ gem 'stimulus-rails'
25
28
26
- # Bundle and process CSS [https://github.com/rails/cssbundling-rails ]
27
- gem 'cssbundling-rails' , '>= 0.1.0 '
29
+ # Build JSON APIs with ease [https://github.com/rails/jbuilder ]
30
+ gem 'jbuilder '
28
31
29
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
30
- gem 'tzinfo-data ' , platforms : %i[ mingw mswin x64_mingw jruby ]
32
+ # Use Redis adapter to run Action Cable in production
33
+ gem 'redis ' , '~> 4.0'
31
34
32
- # Reduces boot times through caching; required in config/boot.rb
33
- gem 'bootsnap' , '>= 1.4.4' , require : false
35
+ # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
36
+ # gem "kredis"
34
37
35
38
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
36
39
# gem "bcrypt", "~> 3.1.7"
37
40
41
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
42
+ gem 'tzinfo-data' , platforms : %i[ mingw mswin x64_mingw jruby ]
43
+
44
+ # Reduces boot times through caching; required in config/boot.rb
45
+ gem 'bootsnap' , require : false
46
+
38
47
# Use Sass to process CSS
39
- # gem "sassc-rails", "~> 2.1"
48
+ # gem "sassc-rails"
40
49
41
- group :development , :test do
42
- # Start debugger with binding.b [https://github.com/ruby/debug]
43
- gem 'debug' , '>= 1.0.0' , platforms : %i[ mri mingw x64_mingw ]
50
+ # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
51
+ # gem "image_processing", "~> 1.2"
44
52
45
- gem 'dotenv-rails'
53
+ group :development , :test do
54
+ # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
55
+ gem 'debug' , platforms : %i[ mri mingw x64_mingw ]
46
56
end
47
57
48
58
group :development do
49
59
gem 'brakeman'
50
60
gem 'reek'
51
61
gem 'rubocop'
62
+ gem 'rubocop-capybara'
52
63
gem 'rubocop-rails'
53
- gem 'scss_lint' , require : false
64
+
54
65
# Use console on exceptions pages [https://github.com/rails/web-console]
55
- gem 'web-console' , '>= 4.1.0'
66
+ gem 'web-console'
56
67
57
68
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
58
- # gem "rack-mini-profiler", ">= 2.3.3"
69
+ # gem "rack-mini-profiler"
59
70
60
71
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
61
72
# gem "spring"
62
73
end
63
74
64
75
group :test do
65
76
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
66
- gem 'capybara' , '>= 3.26'
77
+ gem 'capybara'
67
78
gem 'selenium-webdriver'
68
- gem 'webdrivers'
69
79
end
70
80
71
81
gem 'chartkick'
72
-
73
82
gem 'groupdate'
74
-
75
83
gem 'ynab'
0 commit comments