Add Ruby 3.4 to CI matrix (#9740)

Merge pull request 9740
This commit is contained in:
Ashwin Maroli 2025-01-16 12:47:56 +05:30 committed by GitHub
parent 409034449b
commit 76572b421a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -26,6 +26,8 @@ jobs:
version: "2.7"
- label: Ruby 3.3
version: "3.3"
- label: Ruby 3.4
version: "3.4"
os:
- label: Linux
image: "ubuntu-latest"

View File

@ -32,10 +32,10 @@ Gem::Specification.new do |s|
s.required_ruby_version = ">= 2.7.0"
s.required_rubygems_version = ">= 2.7.0"
s.add_dependency("csv", "~> 3.0")
s.add_runtime_dependency("addressable", "~> 2.4")
s.add_runtime_dependency("base64", "~> 0.2")
s.add_runtime_dependency("colorator", "~> 1.0")
s.add_runtime_dependency("csv", "~> 3.0")
s.add_runtime_dependency("em-websocket", "~> 0.5")
s.add_runtime_dependency("i18n", "~> 1.0")
s.add_runtime_dependency("jekyll-sass-converter", ">= 2.0", "< 4.0")
@ -44,6 +44,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency("kramdown-parser-gfm", "~> 1.0")
s.add_runtime_dependency("liquid", "~> 4.0")
s.add_runtime_dependency("mercenary", ">= 0.3.6", "< 0.5")
s.add_runtime_dependency("mutex_m", "~> 0.3")
s.add_runtime_dependency("pathutil", "~> 0.9")
s.add_runtime_dependency("rouge", ">= 3.0", "< 5.0")
s.add_runtime_dependency("safe_yaml", "~> 1.0")