Skip to content
Merged
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
14 changes: 6 additions & 8 deletions .github/workflows/ci-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,17 @@ jobs:
fail-fast: false
matrix:
include:
- ruby-version: 3.2.9
- ruby-version: 3.3.9
os: ubuntu
- ruby-version: 3.2.9
- ruby-version: 3.3.9
os: windows
- ruby-version: 3.2.9
- ruby-version: 3.3.9
os: macos
- ruby-version: 3.4.3
- ruby-version: 4.0.4
os: ubuntu
- ruby-version: 4.0.0
- ruby-version: jruby-10.1.0.0
os: ubuntu
- ruby-version: jruby-10.0.2.0
os: ubuntu
- ruby-version: truffleruby-33.0.0
- ruby-version: truffleruby-34.0.1
os: ubuntu
with:
name: Unit Tests (${{ matrix.ruby-version }}, ${{ matrix.os }})
Expand Down
2 changes: 1 addition & 1 deletion rb/.rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins:
- rubocop-rspec

AllCops:
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
NewCops: enable
Exclude:
- !ruby/regexp /lib\/selenium\/devtools\/v\d+/
Expand Down
2 changes: 1 addition & 1 deletion rb/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.9
3.3.9
2 changes: 1 addition & 1 deletion rb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Ruby language bindings for [Selenium WebDriver](https://www.selenium.dev).
Selenium automates browsers for testing and web-based task automation.

Supports MRI >= 3.2.
Supports MRI >= 3.3.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion rb/selenium-devtools.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |s|
}

s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=
s.required_ruby_version = Gem::Requirement.new('>= 3.2')
s.required_ruby_version = Gem::Requirement.new('>= 3.3')

s.files = [
'LICENSE',
Expand Down
2 changes: 1 addition & 1 deletion rb/selenium-webdriver.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |s|
}

s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=
s.required_ruby_version = Gem::Requirement.new('>= 3.2')
s.required_ruby_version = Gem::Requirement.new('>= 3.3')

s.files = [
'CHANGES',
Expand Down
Loading