From 47eaf0096c1dcb230b9f959be87a2225ee47316d Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Tue, 10 Oct 2017 23:23:29 -0300 Subject: [PATCH] gemspec: correct msys2 metadata typo (#1436) To help out RubyInstaller2 and provide hints to MSYS2 about required dependencies, `msys2_mingw_dependencies` metadata was added to the gemspec. This change aims to correct the typo around the new metadata field. Ref #1434 Ref #1428 --- puma.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puma.gemspec b/puma.gemspec index cf6bf25e..c0e4a596 100644 --- a/puma.gemspec +++ b/puma.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.email = ["evan@phx.io"] s.executables = ["puma", "pumactl"] s.extensions = ["ext/puma_http11/extconf.rb"] - s.metadata["msys5_mingw_dependencies"] = "openssl" + s.metadata["msys2_mingw_dependencies"] = "openssl" s.files = `git ls-files -- bin docs ext lib tools`.split("\n") + %w[History.md LICENSE README.md] s.homepage = "http://puma.io"