From 0f081edf7e2459dc22672cfa8f27c00fea5e24ad Mon Sep 17 00:00:00 2001 From: hsbt Date: Fri, 24 Feb 2017 06:50:43 +0000 Subject: [PATCH] gem name should be the downcase. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/fcntl/fcntl.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/fcntl/fcntl.gemspec b/ext/fcntl/fcntl.gemspec index 10b3419fec..09ad38706b 100644 --- a/ext/fcntl/fcntl.gemspec +++ b/ext/fcntl/fcntl.gemspec @@ -1,5 +1,5 @@ Gem::Specification.new do |s| - s.name = "Fcntl" + s.name = "fcntl" s.version = '0.0.1' s.date = '2017-02-10' s.summary = "Loads constants defined in the OS fcntl.h C header file"