Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
ruby: "3.1"
task: "--include-spec"
- os: ubuntu-latest
ruby: "3.2"
task: "--include-spec"
Expand All @@ -24,13 +21,16 @@ jobs:
task: "--include-spec"
- os: ubuntu-latest
ruby: "3.4"
task: "--include-spec"
- os: ubuntu-latest
ruby: "4.0"
task: "--include-spec --include-yardoc --include-build"
rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal"
- os: macos-latest
ruby: "3.4"
ruby: "4.0"
task: "--include-spec"
- os: windows-latest
ruby: "3.4"
ruby: "4.0"
task: "--include-spec"
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Ruby 3.4
- name: Install Ruby 4.0
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "4.0"
- name: Install tools
run: |
gem install --no-document toys
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-freeze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Ruby 3.4
- name: Install Ruby 4.0
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "4.0"
- name: Install tools
run: |
gem install --no-document toys
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-unfreeze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Ruby 3.4
- name: Install Ruby 4.0
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "4.0"
- name: Install tools
run: |
gem install --no-document toys
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly-generate-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Ruby 3.4
- name: Install Ruby 4.0
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "4.0"
- name: Install tools
run: |
gem install --no-document toys
Expand Down
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
source 'https://rubygems.org'

gem "rake", "~> 13.0"
gem "gems", "~> 1.2"
gem "irb", "~> 1.17"
gem "ostruct", "~> 0.5.5"
gem "rake", "~> 13.0"
gem "syslog", "~> 0.4.0"
3 changes: 3 additions & 0 deletions google-apis-core/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ group :development do
gem 'launchy', '~> 2.4'
gem 'dotenv', '~> 2.0'
gem 'fakefs', '>= 1.0', '< 4', require: "fakefs/safe"
gem "fiddle", "~> 1.1"
gem 'google-id-token', '~> 1.3'
gem 'os', '~> 0.9'
gem 'ostruct', '~> 0.5.5'
gem "irb", "~> 1.17"
gem 'rmail', '~> 1.1'
gem 'redis', '>= 3.2', '< 5.0.8'
gem 'logging', '~> 2.2'
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 = '>= 3.1'
gem.required_ruby_version = '>= 3.2'
gem.add_runtime_dependency "representable", "~> 3.0"
gem.add_runtime_dependency "retriable", "~> 3.1"
gem.add_runtime_dependency "addressable", "~> 2.8", ">= 2.8.7"
Expand Down
3 changes: 3 additions & 0 deletions google-apis-generator/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ group :development do
gem 'launchy', '~> 2.4'
gem 'dotenv', '~> 2.0'
gem 'fakefs', '>= 1.0', '< 3', require: "fakefs/safe"
gem "fiddle", "~> 1.1"
gem 'google-id-token', '~> 1.3'
gem 'os', '~> 0.9'
gem "ostruct", "~> 0.5.5"
gem "irb", "~> 1.17"
gem 'rmail', '~> 1.1'
gem 'redis', '>= 3.2', '< 5.0.8'
gem 'logging', '~> 2.2'
Expand Down
2 changes: 1 addition & 1 deletion google-apis-generator/google-apis-generator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
gem.executables = ["generate-api"]
gem.require_paths = ["lib"]

gem.required_ruby_version = ">= 3.1"
gem.required_ruby_version = ">= 3.2"
gem.add_runtime_dependency "activesupport", ">= 5.0"
gem.add_runtime_dependency "gems", "~> 1.2"
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
gem.require_paths = ["lib"]

gem.required_ruby_version = '>= 3.1'
gem.required_ruby_version = '>= 3.2'
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
end
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The [product documentation](<%= api.documentation_link %>) may provide guidance

## Supported Ruby versions

This library is supported on Ruby 3.1+.
This library is supported on Ruby 3.2+.

Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.

Expand Down
Loading