Skip to content

Commit

Permalink
Increase minimum supported version of ruby to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivgiuliani committed Jan 9, 2025
1 parent 82958ef commit 4dbdece
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
tests:
strategy:
matrix:
ruby-version: [2.7, 3.0, 3.1, 3.2]
ruby-version: [3.0, 3.1, 3.2]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -33,7 +33,7 @@ jobs:
integration:
strategy:
matrix:
ruby-version: [2.7, 3.0, 3.1, 3.2]
ruby-version: [3.0, 3.1, 3.2]
runs-on: ubuntu-latest
env:
STORAGE_EMULATOR_HOST: "http://localhost:9023/"
Expand Down
2 changes: 1 addition & 1 deletion bucket_store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|

s.files = Dir["lib/**/*", "README.md"]

s.required_ruby_version = ">= 2.7"
s.required_ruby_version = ">= 3.0"

s.add_dependency "aws-sdk-s3", ">= 1.147"
s.add_dependency "google-cloud-storage", ">= 1.50"
Expand Down

0 comments on commit 4dbdece

Please sign in to comment.