From 6f04648a2310a0a7ebc0768a385d4ae26a7328b8 Mon Sep 17 00:00:00 2001 From: Oskar Eichler Date: Sat, 29 Aug 2026 23:08:20 +0200 Subject: [PATCH] Exclude generated binaries from source packages --- ed25519.gemspec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ed25519.gemspec b/ed25519.gemspec index c568088..26a5fb7 100644 --- a/ed25519.gemspec +++ b/ed25519.gemspec @@ -14,7 +14,9 @@ Gem::Specification.new do |spec| DESCRIPTION spec.homepage = "https://github.com/RubyCrypto/ed25519" spec.license = "MIT" - spec.files = Dir["{ext,lib}/**/*", "CHANGES.md", "LICENSE"] + spec.files = Dir["{ext,lib}/**/*", "CHANGES.md", "LICENSE"].reject do |path| + path.end_with?(".bundle", ".jar", ".so") + end spec.bindir = "exe" spec.require_paths = ["lib"] spec.extra_rdoc_files = ["README.md", "ed25519.png"]