Skip to content

Commit

Permalink
feat: Update minimum Ruby version to 2.7 (#17896)
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma authored Feb 22, 2024
1 parent 2d84e59 commit 6f7d2a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@ jobs:
task: "--include-spec"
- os: ubuntu-latest
ruby: "3.2"
task: "--include-spec"
- os: ubuntu-latest
ruby: "3.3"
task: "--include-spec --include-yardoc --include-build"
- os: macos-latest
ruby: "3.2"
ruby: "3.3"
task: "--include-spec"
- os: windows-latest
ruby: "3.2"
ruby: "3.3"
task: "--include-spec"
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion google-apis-core/google-apis-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |gem|
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
gem.require_paths = ["lib"]

gem.required_ruby_version = '>= 2.5'
gem.required_ruby_version = '>= 2.7'
gem.add_runtime_dependency "representable", "~> 3.0"
gem.add_runtime_dependency "retriable", ">= 2.0", "< 4.a"
gem.add_runtime_dependency "addressable", "~> 2.5", ">= 2.5.1"
Expand Down

0 comments on commit 6f7d2a6

Please sign in to comment.