Skip to content

Commit

Permalink
Merge pull request #9 from procore-oss/jm-drop-ruby-27-support
Browse files Browse the repository at this point in the history
chore: drop support for ruby 2.7
  • Loading branch information
jmeridth authored Mar 18, 2024
2 parents 84eeaaf + 0caeaec commit 493f1d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ['3.0', '3.1', '3.2']
include:
- os: ubuntu-20.04
ruby: '2.7'
ruby: ['3.0', '3.1', '3.2', '3.3']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Ruby versions that are currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| <=2.6 | :x: |
| 2.7 | :white_check_mark: |
| <=2.7 | :x: |
| 3.0 | :white_check_mark: |
| 3.1 | :white_check_mark: |
| 3.2 | :white_check_mark: |
| 3.3 | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion blueprinter-activerecord.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = 'Eager loading and other ActiveRecord helpers for Blueprinter'
spec.homepage = 'https://github.com/procore-oss/blueprinter-activerecord'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.7')
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/procore-oss/blueprinter-activerecord'
Expand Down

0 comments on commit 493f1d8

Please sign in to comment.