From f8fc3cde3964efb0445f6dc6c4170841e37e0283 Mon Sep 17 00:00:00 2001 From: Hayden Rouille Date: Sat, 16 Mar 2024 02:11:01 -0700 Subject: [PATCH] Upgrade symmetric-encryption gem & bundler (#732) * Update bundler * Upgrade symmetric_encryption * Run standardrb --fix * Remove comment & add TODO to gitignore * Update ruby version in docker file for backend --- .gitignore | 4 +++- backend/Dockerfile | 4 ++-- backend/Gemfile.lock | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 03d9dbd5..25ddc065 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,6 @@ dump.rdb .bundle frontend/.env -.DS_Store \ No newline at end of file +.DS_Store + +TODO.md diff --git a/backend/Dockerfile b/backend/Dockerfile index 133e9286..2941591a 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.0 +FROM ruby:3.1.3 # set working directory WORKDIR /app @@ -8,7 +8,7 @@ RUN apt-get update -qq && \ apt-get install -y nodejs postgresql-client # install bundler -RUN gem install bundler:2.1.4 +RUN gem install bundler:2.5.6 # copy the Gemfile and Gemfile.lock to the container COPY Gemfile Gemfile.lock ./ diff --git a/backend/Gemfile.lock b/backend/Gemfile.lock index 45d32f99..16aa7427 100644 --- a/backend/Gemfile.lock +++ b/backend/Gemfile.lock @@ -448,7 +448,7 @@ GEM rubocop-performance (~> 1.18.0) standardrb (1.0.1) standard - symmetric-encryption (4.4.0) + symmetric-encryption (4.6.0) coercible (~> 1.0) thor (1.3.0) thread_safe (0.3.6) @@ -547,4 +547,4 @@ RUBY VERSION ruby 3.1.3p185 BUNDLED WITH - 2.2.33 + 2.5.6