From a537321bb946d243513a2364d74e1437e15b32d9 Mon Sep 17 00:00:00 2001
From: Lucas Carlson <lucas@carlson.net>
Date: Wed, 31 Jul 2024 01:15:16 -0700
Subject: [PATCH] Include test files in gem package

- Add 'test/*' to the list of files included in the gem specification
---
 classifier.gemspec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/classifier.gemspec b/classifier.gemspec
index b579e69..7834dbf 100644
--- a/classifier.gemspec
+++ b/classifier.gemspec
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
   s.author = 'Lucas Carlson'
   s.email = 'lucas@rufy.com'
   s.homepage = 'https://github.com/cardmagic/classifier'
-  s.files = Dir['{lib}/**/*.rb', 'bin/*', 'LICENSE', '*.md']
+  s.files = Dir['{lib}/**/*.rb', 'bin/*', 'LICENSE', '*.md', 'test/*']
   s.license = 'LGPL'
 
   s.add_dependency 'fast-stemmer', '~> 1.0.0'