Skip to content

Commit

Permalink
Merge pull request #72 from procore-oss/jm-drop-ruby-27-support
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeridth authored Mar 19, 2024
2 parents 20f7f19 + 9af0201 commit d523fe8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 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 }}
services:
redis:
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
17 changes: 9 additions & 8 deletions procore.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "procore/version"

Gem::Specification.new do |spec|
spec.name = "procore"
spec.version = Procore::VERSION
spec.authors = ["Procore Technologies, Inc."]
spec.email = ["[email protected]"]
spec.name = "procore"
spec.version = Procore::VERSION
spec.authors = ["Procore Technologies, Inc."]
spec.email = ["[email protected]"]

spec.summary = "Procore Ruby Gem"
spec.description = "Procore Ruby Gem"
spec.homepage = "https://github.com/procore-oss/ruby-sdk"
spec.license = "MIT"
spec.summary = "Procore Ruby Gem"
spec.description = "Procore Ruby Gem"
spec.homepage = "https://github.com/procore-oss/ruby-sdk"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
Expand Down

0 comments on commit d523fe8

Please sign in to comment.