Ensure gem includes all files from subfolders

This commit is contained in:
ChillerDragon 2023-09-17 17:16:18 +02:00
parent 5fdd4ffd15
commit 1672b5113f
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
Gemfile.lock Gemfile.lock
*.gem
*.cfg *.cfg
scripts/tmp scripts/tmp
integration_test/*.txt integration_test/*.txt

View file

@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.authors = ['ChillerDragon'] s.authors = ['ChillerDragon']
s.email = 'ChillerDragon@gmail.com' s.email = 'ChillerDragon@gmail.com'
s.files = FileList[ s.files = FileList[
'lib/*.rb' 'lib/**/*.rb'
] ]
s.required_ruby_version = '>= 3.1.2' s.required_ruby_version = '>= 3.1.2'
s.add_dependency 'huffman_tw', '~> 0.0.1' s.add_dependency 'huffman_tw', '~> 0.0.1'