1
1
source 'https://rubygems.org'
2
2
3
- ruby '2.7.6 '
3
+ ruby '3.1.2 '
4
4
5
5
git_source ( :github ) do |repo_name |
6
6
repo_name = "#{ repo_name } /#{ repo_name } " unless repo_name . include? ( "/" )
@@ -26,7 +26,11 @@ gem 'aasm'
26
26
27
27
28
28
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
29
- gem 'rails' , '~> 5.2.6'
29
+ gem 'rails' , '~> 6.1'
30
+ gem 'activesupport' , '~> 6.1'
31
+ gem 'actionpack' , '~> 6.1'
32
+
33
+ gem 'net-smtp'
30
34
# Use postgres as the database for Active Record
31
35
gem 'pg'
32
36
# Use Puma as the app server
@@ -67,18 +71,18 @@ group :development, :test do
67
71
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
68
72
gem 'byebug' , platforms : [ :mri , :mingw , :x64_mingw ]
69
73
# Adds support for Capybara system testing and selenium driver
70
- gem 'capybara' , '~> 2.13'
74
+ gem 'capybara'
71
75
gem 'selenium-webdriver'
72
76
gem 'pry'
73
77
end
74
78
75
79
group :development do
76
80
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
77
- gem 'web-console' , '>= 3.3.0'
78
- gem 'listen' , '>= 3.0.5' , '< 3.2'
81
+ gem 'web-console'
82
+ gem 'listen'
79
83
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
80
84
gem 'spring'
81
- gem 'spring-watcher-listen' , '~> 2.0.0'
85
+ gem 'spring-watcher-listen'
82
86
end
83
87
84
88
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
0 commit comments