From 01307777103a0a5be5fa0381ef626db515dd7824 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Thu, 13 Jun 2024 19:00:35 +0900 Subject: [PATCH] Remove "gemspec" from Gemfile The local lib directory may contain an incomplete openssl library. The "gemspec" line in Gemfile causes "bundle exec" to put the lib directory in the load path. Although our Rakefile does not use openssl itself, it still indirectly tries to load it as a RubyGems dependency. --- Gemfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Gemfile b/Gemfile index c92289d9a..e7eae0fd5 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,5 @@ source "https://rubygems.org" -gemspec - gem "rake" gem "rake-compiler" gem "test-unit", "~> 3.0", ">= 3.4.6"