Skip to content

Commit

Permalink
Merge pull request #92 from mvz/support-ruby-3-and-up
Browse files Browse the repository at this point in the history
Support Ruby 3.0 and up
  • Loading branch information
mvz committed Dec 27, 2023
2 parents 0141cc5 + ba95c18 commit e86de7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2"]
ruby: ["3.0", "3.1", "3.2", "3.3"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -9,7 +9,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

# Put development dependencies in the gemspec so rubygems.org knows about them
Gemspec/DevelopmentDependencies:
Expand Down
2 changes: 1 addition & 1 deletion gnome_app_driver.gemspec
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
DESC
spec.homepage = "http://www.github.com/mvz/ruby-gnome2_app_driver"
spec.license = "LGPL-2.1+"
spec.required_ruby_version = ">= 2.7.0"
spec.required_ruby_version = ">= 3.0.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/mvz/ruby-gnome2_app_driver"
Expand Down

0 comments on commit e86de7d

Please sign in to comment.