Skip to content

Commit

Permalink
Latest stable Ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdavidhamilton committed Jul 15, 2024
1 parent eb5b739 commit 77f96a9
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/brakeman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.4
bundler-cache: true
-
name: Setup Brakeman
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.4
bundler-cache: true
-
name: Install Rubygems
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cms-search.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.4
bundler-cache: true
-
name: Install Rubygems
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cms-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.4
bundler-cache: true
-
name: Install Rubygems
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.4
bundler-cache: true
-
name: Install Rubygems
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inherit_mode:
require: rubocop-performance

AllCops:
TargetRubyVersion: 3.2.2
TargetRubyVersion: 3.3.4

Style/StringLiterals:
EnforcedStyle: single_quotes
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.2.2
ruby-3.3.4
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodejs 18.11.0
postgres 15.4
ruby 3.2.2
ruby 3.3.4
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ------------------------------------------------------------------------------
# Base - AMD64 & ARM64 compatible
# ------------------------------------------------------------------------------
FROM ruby:3.2.2-alpine as base
FROM ruby:3.3.4-alpine as base

RUN apk add --no-cache --no-progress --no-check-certificate build-base less curl tzdata gcompat

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.2.2'
ruby '3.3.4'

gem 'pg'
gem 'puma'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ DEPENDENCIES
yard-junk

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.4p94

BUNDLED WITH
2.4.13
2.5.11
2 changes: 1 addition & 1 deletion spec/jobs/mail_job_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RSpec.describe MailJob do
describe '.recipients' do
it 'expects a scope to filter users' do
expect { described_class.recipients }.to raise_error NoMethodError, "undefined method `mail_job_recipients' for User:Class"
expect { described_class.recipients }.to raise_error NoMethodError, "undefined method `mail_job_recipients' for class User"
end
end

Expand Down

0 comments on commit 77f96a9

Please sign in to comment.