Skip to content

Commit ef0c5ee

Browse files
Update Rails to 6.1.7.4
1 parent 4585db1 commit ef0c5ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+8062
-207
lines changed

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ TAGS
5151
# Ignore local uploads
5252
public/uploads/
5353
vendor/bundle
54+
55+
/public/packs
56+
/public/packs-test
57+
/node_modules
58+
/yarn-error.log
59+
yarn-debug.log*
60+
.yarn-integrity

Gemfile

+22-14
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
source 'https://rubygems.org'
22
ruby '2.7.2'
33

4-
gem 'rails', '5.2.8.1'
4+
gem 'rails', '6.1.7.4'
55
# Reduces boot times through caching; required in config/boot.rb
6-
gem 'bootsnap', '>= 1.1.0', require: false
6+
gem 'bootsnap', '>= 1.4.4', require: false
77

88
gem 'acts-as-taggable-on'
99
gem 'carrierwave'
@@ -18,23 +18,27 @@ gem 'haml'
1818
gem 'high_voltage'
1919
gem 'jquery-rails'
2020
gem 'jquery-ui-rails'
21-
# Use ActiveStorage variant
22-
gem 'mini_magick'
21+
22+
# Use Active Storage variant
23+
gem 'image_processing', '~> 1.2'
2324
gem 'nokogiri'
2425
gem 'omniauth'
2526
gem 'omniauth-github'
2627
gem 'omniauth-rails_csrf_protection'
2728
gem 'pg'
2829
gem 'pickadate-rails'
2930
gem 'premailer-rails'
30-
gem 'puma'
31+
gem 'puma', '~> 5.0'
3132
gem 'pundit'
3233
gem 'rails4-autocomplete'
3334
gem 'rolify'
34-
gem 'sassc-rails'
35+
gem 'sass-rails', '>= 6'
36+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
37+
gem 'webpacker', '~> 5.0'
3538
gem 'simple_form'
36-
gem 'turbolinks'
37-
gem 'terser', '~> 1.1'
39+
40+
gem 'terser'
41+
3842
gem 'will_paginate'
3943
gem 'sprockets-rails'
4044

@@ -50,18 +54,22 @@ gem 'stripe'
5054

5155
gem 'rails-html-sanitizer', '~> 1.4.4'
5256

53-
gem 'jbuilder'
57+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
58+
gem 'turbolinks', '~> 5'
59+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
60+
gem 'jbuilder', '~> 2.7'
5461
gem 'public_activity'
5562

5663
group :development do
5764
gem 'better_errors'
5865
gem 'letter_opener'
59-
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
60-
gem 'web-console', '>= 3.3.0'
61-
gem 'listen', '>= 3.0.5', '< 3.2'
66+
gem 'web-console', '>= 4.1.0'
67+
# Display performance information such as SQL time and flame graphs for each request in your browser.
68+
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
69+
gem 'rack-mini-profiler', '~> 2.0'
70+
gem 'listen', '~> 3.3'
6271
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
6372
gem 'spring'
64-
gem 'spring-watcher-listen', '~> 2.0.0'
6573
end
6674

6775
group :development, :test do
@@ -81,7 +89,7 @@ group :development, :test do
8189
end
8290

8391
group :test do
84-
gem 'capybara'
92+
gem 'capybara', '>= 3.26'
8593
gem 'database_cleaner'
8694
gem 'shoulda-matchers', '~> 4.5'
8795
gem 'webdrivers'

0 commit comments

Comments
 (0)