From e01a75da18f01d0d1c62b1cba121a74b34a17adb Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Tue, 10 Oct 2017 20:13:26 -0300 Subject: [PATCH] gemspec: correct msys2 metadata typo 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 cf6bf25eb8..c0e4a59602 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"