@@ -3,38 +3,30 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33
44ruby '2.6.2'
55
6- # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7- gem 'rails' , '~> 5.2.3 '
6+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
7+ gem 'rails' , '~> 6.1.4 '
88# Use sqlite3 as the database for Active Record
9- gem 'sqlite3'
9+ gem 'sqlite3' , '~> 1.4'
1010# Use Puma as the app server
11- gem 'puma' , '~> 3.11 '
11+ gem 'puma' , '~> 5.0 '
1212# Use SCSS for stylesheets
13- gem 'sass-rails' , '~> 5.0'
14- # Use Uglifier as compressor for JavaScript assets
15- gem 'uglifier' , '>= 1.3.0'
16- # See https://github.com/rails/execjs#readme for more supported runtimes
17- # gem 'mini_racer', platforms: :ruby
18-
19- # Use CoffeeScript for .coffee assets and views
20- gem 'coffee-rails' , '~> 4.2'
13+ gem 'sass-rails' , '>= 6'
14+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15+ gem 'webpacker' , '~> 5.0'
2116# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
2217gem 'turbolinks' , '~> 5'
2318# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24- gem 'jbuilder' , '~> 2.5 '
19+ gem 'jbuilder' , '~> 2.7 '
2520# Use Redis adapter to run Action Cable in production
2621# gem 'redis', '~> 4.0'
27- # Use ActiveModel has_secure_password
22+ # Use Active Model has_secure_password
2823# gem 'bcrypt', '~> 3.1.7'
2924
30- # Use ActiveStorage variant
31- # gem 'mini_magick', '~> 4.8'
32-
33- # Use Capistrano for deployment
34- # gem 'capistrano-rails', group: :development
25+ # Use Active Storage variant
26+ # gem 'image_processing', '~> 1.2'
3527
3628# Reduces boot times through caching; required in config/boot.rb
37- gem 'bootsnap' , '>= 1.1.0 ' , require : false
29+ gem 'bootsnap' , '>= 1.4.4 ' , require : false
3830
3931group :development , :test do
4032 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
4335
4436group :development do
4537 # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
46- gem 'web-console' , '>= 3.3.0'
47- gem 'listen' , '>= 3.0.5' , '< 3.2'
38+ gem 'web-console' , '>= 4.1.0'
39+ # Display performance information such as SQL time and flame graphs for each request in your browser.
40+ # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
41+ gem 'rack-mini-profiler' , '~> 2.0'
42+ gem 'listen' , '~> 3.3'
4843 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
4944 gem 'spring'
50- gem 'spring-watcher-listen' , '~> 2.0.0'
5145end
5246
5347group :test do
5448 # Adds support for Capybara system testing and selenium driver
55- gem 'capybara' , '>= 2.15 '
49+ gem 'capybara' , '>= 3.26 '
5650 gem 'selenium-webdriver'
57- # Easy installation and use of chromedriver to run system tests with Chrome
58- gem 'chromedriver-helper '
51+ # Easy installation and use of web drivers to run system tests with browsers
52+ gem 'webdrivers '
5953end
6054
6155# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
0 commit comments