029ae1
From 0689147586c6cb56b91bf0f368890f19d630ece1 Mon Sep 17 00:00:00 2001
029ae1
From: nobletrout <nobletrout@gmail.com>
029ae1
Date: Tue, 5 Feb 2019 08:14:02 -0500
029ae1
Subject: [PATCH] remove unneeded gem require for ipaddr
029ae1
029ae1
ipaddr is a builtin class for ruby, that is occasionally merged. If the version isn't specified by the runtime dependency, then it will default to needing the latest gem rather than the version that ships with that version of ruby. That will lead to all kinds of potential dependency fails that are most likely unneeded since this gem already requires ruby > 2.3.0
029ae1
---
029ae1
 ext/openssl/openssl.gemspec | 1 -
029ae1
 1 file changed, 1 deletion(-)
029ae1
029ae1
diff --git a/ext/openssl/openssl.gemspec b/ext/openssl/openssl.gemspec
029ae1
index 7c17cd54..f721f247 100644
029ae1
--- a/ext/openssl/openssl.gemspec
029ae1
+++ b/ext/openssl/openssl.gemspec
50cb19
@@ -17,7 +17,6 @@ Gem::Specification.new do |spec|
029ae1
 
50cb19
   spec.required_ruby_version = ">= 2.3.0"
50cb19
 
50cb19
-  spec.add_runtime_dependency "ipaddr"
50cb19
   spec.add_development_dependency "rake"
50cb19
   spec.add_development_dependency "rake-compiler"
50cb19
   spec.add_development_dependency "test-unit", "~> 3.0"