From 6fcd6f0b2cfcbbc0cfd58ba1018df5567e1eef30 Mon Sep 17 00:00:00 2001 From: Ben Bradford Date: Mon, 26 Jun 2023 15:50:04 -0500 Subject: [PATCH] bumps ruby to v3.2.2 --- .circleci/config.yml | 2 +- .ruby-version | 2 +- Gemfile.lock | 6 +++--- README.md | 4 +++- config/deploy.rb | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7483516..a4a5f3e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ orbs: jobs: build: docker: - - image: cimg/ruby:3.2.1-node + - image: cimg/ruby:3.2.2-node environment: PG_HOST: localhost PG_USER: postgres diff --git a/.ruby-version b/.ruby-version index e4604e3..be94e6f 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.1 +3.2.2 diff --git a/Gemfile.lock b/Gemfile.lock index c47fc35..fe05061 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -282,7 +282,7 @@ GEM rspec-expectations (~> 3.12) rspec-mocks (~> 3.12) rspec-support (~> 3.12) - rspec-support (3.12.0) + rspec-support (3.12.1) rubocop (1.52.1) json (~> 2.3) parallel (~> 1.10) @@ -342,7 +342,7 @@ GEM execjs (>= 0.3.0, < 3) thor (1.2.2) tilt (2.2.0) - timeout (0.3.2) + timeout (0.4.0) turbolinks (5.2.1) turbolinks-source (~> 5.2) turbolinks-source (5.2.0) @@ -409,4 +409,4 @@ DEPENDENCIES will_paginate BUNDLED WITH - 2.4.8 + 2.4.14 diff --git a/README.md b/README.md index 075b1e5..dd7a29f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # AgWeather/Soils website +[![CircleCI](https://dl.circleci.com/status-badge/img/gh/uwent/soils-ag-wx/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/uwent/soils-ag-wx/tree/main) + This codebase generates the agweather website which serves in part as a frontend for the agweather backend API. ## Dependencies @@ -21,7 +23,7 @@ git -C "$(rbenv root)"/plugins/ruby-build pull git config --global url."https://github.com/".insteadOf git://github.com/ # install ruby with rbenv -rbenv install 3.2.1 # or latest version +rbenv install 3.2.2 # or latest version # update bundler to latest gem install bundler diff --git a/config/deploy.rb b/config/deploy.rb index c3b6004..b05c8b2 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -38,7 +38,7 @@ # rbenv set :deploy_user, "deploy" set :rbenv_type, :user -set :rbenv_ruby, "3.2.1" +set :rbenv_ruby, "3.2.2" namespace :deploy do desc "Restart application"