From 54b564fe7ca68e980b69784cb7b43c8d3392853b Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Fri, 23 Feb 2024 10:41:42 +0100 Subject: [PATCH] Drop dependency on ruby2_keywords #4 bumped the minimum required ruby version to 2.7, so this is not needed anymore --- drb.gemspec | 2 -- test/lib/helper.rb | 2 -- 2 files changed, 4 deletions(-) diff --git a/drb.gemspec b/drb.gemspec index c9d7e40..83fc16d 100644 --- a/drb.gemspec +++ b/drb.gemspec @@ -38,6 +38,4 @@ Gem::Specification.new do |spec| lib/drb/weakidconv.rb ] spec.require_paths = ["lib"] - - spec.add_dependency "ruby2_keywords" end diff --git a/test/lib/helper.rb b/test/lib/helper.rb index 6e96b14..bef8234 100644 --- a/test/lib/helper.rb +++ b/test/lib/helper.rb @@ -1,6 +1,4 @@ require "test/unit" require "core_assertions" -require "ruby2_keywords" - Test::Unit::TestCase.include Test::Unit::CoreAssertions