From a30478045923c6750a2d5e63e46886b8afeb8e53 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Wed, 3 Mar 2021 00:36:15 +0000 Subject: [PATCH 1/6] Update dotenv-rails to version 2.7.6 --- Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 21de475f..c43e625f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -161,10 +161,10 @@ GEM docile (1.3.5) domain_name (0.5.20180417) unf (>= 0.0.5, < 1.0.0) - dotenv (2.7.5) - dotenv-rails (2.7.5) - dotenv (= 2.7.5) - railties (>= 3.2, < 6.1) + dotenv (2.7.6) + dotenv-rails (2.7.6) + dotenv (= 2.7.6) + railties (>= 3.2) erubi (1.10.0) erubis (2.7.0) execjs (2.7.0) @@ -302,7 +302,7 @@ GEM mini_magick (4.9.5) mini_mime (1.0.2) mini_portile2 (2.5.0) - minitest (5.14.3) + minitest (5.14.4) momentjs-rails (2.20.1) railties (>= 3.1) monetize (1.9.2) From 92a781a59502acadcacc8c0af26303dcc70dfa07 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Wed, 3 Mar 2021 06:16:49 +0000 Subject: [PATCH 2/6] Update font-awesome-rails to version 4.7.0.7 --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index b07d289e..b735bb24 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -191,8 +191,8 @@ GEM path_expander (~> 1.0) ruby_parser (~> 3.0) sexp_processor (~> 4.0) - font-awesome-rails (4.7.0.5) - railties (>= 3.2, < 6.1) + font-awesome-rails (4.7.0.7) + railties (>= 3.2, < 7) formatador (0.2.5) formtastic (3.1.5) actionpack (>= 3.2.13) From 072ca8305226aff726fba4fcbf5a9fcc655409fa Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Thu, 4 Mar 2021 01:39:46 -0800 Subject: [PATCH 3/6] Add pry-byebug gem --- Gemfile | 1 + Gemfile.lock | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 3bca5dfc..f5eeed13 100644 --- a/Gemfile +++ b/Gemfile @@ -273,6 +273,7 @@ group :development, :test, :linters do # as debugger gem 'byebug' gem 'pry' + gem 'pry-byebug' # Linters and static analysis. gem 'pronto', require: false diff --git a/Gemfile.lock b/Gemfile.lock index b07d289e..3303ccf3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -419,6 +419,9 @@ GEM coderay (~> 1.1.0) method_source (~> 0.8.1) slop (~> 3.4) + pry-byebug (3.8.0) + byebug (~> 11.0) + pry (~> 0.10) public_suffix (3.1.1) puma (5.2.1) nio4r (~> 2.0) @@ -746,6 +749,7 @@ DEPENDENCIES pronto-haml pronto-rubocop pry + pry-byebug puma (~> 5.2) rails (~> 5.2) rails-assets-bootstrap-markdown! From ea6a29e667b1e6bf7a812a4ac622cd7f8ada813c Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Thu, 4 Mar 2021 01:41:49 -0800 Subject: [PATCH 4/6] Add cache_storage config for carrierwave 2 --- config/initializers/carrierwave.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/initializers/carrierwave.rb b/config/initializers/carrierwave.rb index e9a315d8..64889d47 100644 --- a/config/initializers/carrierwave.rb +++ b/config/initializers/carrierwave.rb @@ -1,5 +1,6 @@ CarrierWave.configure do |config| config.storage = :file + config.cache_storage = :file config.cache_dir = "#{Rails.root}/tmp/uploads" config.enable_processing = false if Rails.env.test? end From 1133dcb30bd4c18aee82a51a745e63d39155393b Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 4 Mar 2021 10:46:20 +0000 Subject: [PATCH 5/6] Update rails-controller-testing to version 1.0.5 --- Gemfile.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 166e31a2..4605b6b4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -465,10 +465,10 @@ GEM rails-assets-to-markdown (3.1.1) rails-assets-trianglify (1.2.0) rails-assets-waypoints (4.0.0) - rails-controller-testing (1.0.4) - actionpack (>= 5.0.1.x) - actionview (>= 5.0.1.x) - activesupport (>= 5.0.1.x) + rails-controller-testing (1.0.5) + actionpack (>= 5.0.1.rc1) + actionview (>= 5.0.1.rc1) + activesupport (>= 5.0.1.rc1) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) From dee3e8ad23a0e1f7e0d142d4638be4b8a681a17e Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 4 Mar 2021 11:06:08 +0000 Subject: [PATCH 6/6] Update puma to version 5.2.2 --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 166e31a2..753be976 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -325,7 +325,7 @@ GEM multipart-post (2.1.1) nenv (0.3.0) netrc (0.11.0) - nio4r (2.5.5) + nio4r (2.5.7) nokogiri (1.11.1) mini_portile2 (~> 2.5.0) racc (~> 1.4) @@ -423,7 +423,7 @@ GEM byebug (~> 11.0) pry (~> 0.10) public_suffix (3.1.1) - puma (5.2.1) + puma (5.2.2) nio4r (~> 2.0) racc (1.5.2) rack (2.2.3)