Preserve 3.2 as oldest support ruby

This commit is contained in:
Matt Jankowski 2024-12-28 11:50:57 -05:00
parent 46dd2de0f2
commit 91a266eff0
3 changed files with 6 additions and 2 deletions

View File

@ -124,6 +124,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
steps: steps:
@ -225,6 +226,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
steps: steps:
@ -303,6 +305,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
@ -419,6 +422,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
ruby-version: ruby-version:
- '3.2'
- '3.3' - '3.3'
- '.ruby-version' - '.ruby-version'
search-image: search-image:

View File

@ -8,7 +8,7 @@ AllCops:
- lib/mastodon/migration_helpers.rb - lib/mastodon/migration_helpers.rb
ExtraDetails: true ExtraDetails: true
NewCops: enable NewCops: enable
TargetRubyVersion: 3.3 # Oldest supported ruby version TargetRubyVersion: 3.2 # Oldest supported ruby version
inherit_from: inherit_from:
- .rubocop/layout.yml - .rubocop/layout.yml

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
source 'https://rubygems.org' source 'https://rubygems.org'
ruby '>= 3.3.0' ruby '>= 3.2.0'
gem 'propshaft' gem 'propshaft'
gem 'puma', '~> 6.3' gem 'puma', '~> 6.3'