From 2605a02920a87b1abaa32f12c2bed658b3e7b6ba Mon Sep 17 00:00:00 2001 From: Kevin McCormack Date: Mon, 28 Oct 2024 22:04:52 -0400 Subject: [PATCH] Require Ruby >= 3.0 (#435) * Require Ruby >= 3.0.0 * Update test.yml --- .github/workflows/test.yml | 1 - net-ldap.gemspec | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a405a39..7cc5019d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,6 @@ jobs: - "3.1" - "3.2" - "3.3" - - "jruby-9.3" - "jruby-9.4" - "truffleruby" steps: diff --git a/net-ldap.gemspec b/net-ldap.gemspec index 1b72a753..3def4c20 100644 --- a/net-ldap.gemspec +++ b/net-ldap.gemspec @@ -26,7 +26,7 @@ the most recent LDAP RFCs (4510-4519, plutions of 4520-4532).} s.homepage = %q{http://github.com/ruby-ldap/ruby-net-ldap} s.rdoc_options = ["--main", "README.rdoc"] s.require_paths = ["lib"] - s.required_ruby_version = ">= 2.0.0" + s.required_ruby_version = ">= 3.0.0" s.summary = %q{Net::LDAP for Ruby (also called net-ldap) implements client access for the Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for accessing distributed directory services} s.add_dependency("ostruct")