@@ -3,30 +3,38 @@ 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', branch: 'main'
7- gem 'rails' , '~> 6.1.4 '
6+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+ gem 'rails' , '~> 5.2.3 '
88# Use sqlite3 as the database for Active Record
9- gem 'sqlite3' , '~> 1.4'
9+ gem 'sqlite3'
1010# Use Puma as the app server
11- gem 'puma' , '~> 5.0 '
11+ gem 'puma' , '~> 3.11 '
1212# Use SCSS for stylesheets
13- gem 'sass-rails' , '>= 6'
14- # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15- gem 'webpacker' , '~> 5.0'
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'
1621# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
1722gem 'turbolinks' , '~> 5'
1823# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
19- gem 'jbuilder' , '~> 2.7 '
24+ gem 'jbuilder' , '~> 2.5 '
2025# Use Redis adapter to run Action Cable in production
2126# gem 'redis', '~> 4.0'
22- # Use Active Model has_secure_password
27+ # Use ActiveModel has_secure_password
2328# gem 'bcrypt', '~> 3.1.7'
2429
25- # Use Active Storage variant
26- # gem 'image_processing', '~> 1.2'
30+ # Use ActiveStorage variant
31+ # gem 'mini_magick', '~> 4.8'
32+
33+ # Use Capistrano for deployment
34+ # gem 'capistrano-rails', group: :development
2735
2836# Reduces boot times through caching; required in config/boot.rb
29- gem 'bootsnap' , '>= 1.4.4 ' , require : false
37+ gem 'bootsnap' , '>= 1.1.0 ' , require : false
3038
3139group :development , :test do
3240 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
3543
3644group :development do
3745 # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
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'
46+ gem 'web-console' , '>= 3.3.0'
47+ gem 'listen' , '>= 3.0.5' , '< 3.2'
4348 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
4449 gem 'spring'
50+ gem 'spring-watcher-listen' , '~> 2.0.0'
4551end
4652
4753group :test do
4854 # Adds support for Capybara system testing and selenium driver
49- gem 'capybara' , '>= 3.26 '
55+ gem 'capybara' , '>= 2.15 '
5056 gem 'selenium-webdriver'
51- # Easy installation and use of web drivers to run system tests with browsers
52- gem 'webdrivers '
57+ # Easy installation and use of chromedriver to run system tests with Chrome
58+ gem 'chromedriver-helper '
5359end
5460
5561# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
0 commit comments