1a3bc2
From 0689147586c6cb56b91bf0f368890f19d630ece1 Mon Sep 17 00:00:00 2001
1a3bc2
From: nobletrout <nobletrout@gmail.com>
1a3bc2
Date: Tue, 5 Feb 2019 08:14:02 -0500
1a3bc2
Subject: [PATCH] remove unneeded gem require for ipaddr
1a3bc2
1a3bc2
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
1a3bc2
---
1a3bc2
 ext/openssl/openssl.gemspec | 1 -
1a3bc2
 1 file changed, 1 deletion(-)
1a3bc2
1a3bc2
diff --git a/ext/openssl/openssl.gemspec b/ext/openssl/openssl.gemspec
1a3bc2
index 7c17cd54..f721f247 100644
1a3bc2
--- a/ext/openssl/openssl.gemspec
1a3bc2
+++ b/ext/openssl/openssl.gemspec
992ec9
@@ -17,7 +17,6 @@ Gem::Specification.new do |spec|
1a3bc2
 
992ec9
   spec.required_ruby_version = ">= 2.3.0"
992ec9
 
992ec9
-  spec.add_runtime_dependency "ipaddr"
992ec9
   spec.add_development_dependency "rake"
992ec9
   spec.add_development_dependency "rake-compiler"
992ec9
   spec.add_development_dependency "test-unit", "~> 3.0"