Skip to content

Commit beeab5c

Browse files
feat: Update minimum Ruby to v3.2 and support v4.0
1 parent 3dd3529 commit beeab5c

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

google-cloud-trace/Gemfile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,17 @@ end
2828
gem "activerecord", ">= 5.0", "< 7.1.4"
2929
gem "autotest-suffix", "~> 1.1"
3030
gem "faraday", ">= 1.3", "< 3"
31-
gem "google-style", "~> 1.30.1"
32-
gem "minitest", "~> 5.16"
31+
gem "google-style", "~> 1.32.0"
32+
gem "irb", "~> 1.17"
33+
gem "minitest", "~> 6.0.2"
3334
gem "minitest-autotest", "~> 1.0"
34-
gem "minitest-focus", "~> 1.1"
35-
gem "minitest-rg", "~> 5.2"
35+
gem "minitest-focus", "~> 1.4"
36+
gem "minitest-mock", "~> 5.27"
37+
gem "minitest-rg", "~> 5.3"
38+
gem "ostruct", "~> 0.5.5"
3639
gem "railties", ">= 5.0", "< 7.1.4"
3740
gem "rake"
38-
gem "redcarpet", "~> 3.0"
39-
gem "simplecov", "~> 0.9"
41+
gem "redcarpet", "~> 3.6"
42+
gem "simplecov", "~> 0.22"
4043
gem "yard", "~> 0.9"
4144
gem "yard-doctest" # , "~> 0.1.6"

google-cloud-trace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ end
209209

210210
## Supported Ruby Versions
211211

212-
This library is supported on Ruby 3.0+.
212+
This library is supported on Ruby 3.2+.
213213

214214
Google provides official support for Ruby versions that are actively supported
215215
by Ruby Core—that is, Ruby versions that are either in normal maintenance or

google-cloud-trace/google-cloud-trace.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
1818
["OVERVIEW.md", "AUTHENTICATION.md", "INSTRUMENTATION.md", "LOGGING.md", "CONTRIBUTING.md", "TROUBLESHOOTING.md", "CHANGELOG.md", "CODE_OF_CONDUCT.md", "LICENSE", ".yardopts"]
1919
gem.require_paths = ["lib"]
2020

21-
gem.required_ruby_version = ">= 3.0"
21+
gem.required_ruby_version = ">= 3.2"
2222

2323
gem.add_dependency "google-cloud-core", "~> 1.5"
2424
gem.add_dependency "stackdriver-core", "~> 1.3"

0 commit comments

Comments
 (0)