Skip to content

Commit

Permalink
Ensure rbs type signatures are included with the gem on release (#77)
Browse files Browse the repository at this point in the history
Specifically, include `sig` in `gemspec`'s `gem.files`.
  • Loading branch information
gonzedge authored Dec 2, 2024
1 parent 604a834 commit 804bedc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rambling-trie.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
}

executables = `git ls-files -- bin/*`.split "\n"
files = `git ls-files -- {lib,*file,*.gemspec,LICENSE*,README*}`.split "\n"
files = `git ls-files -- {lib,sig,*file,*.gemspec,LICENSE*,README*}`.split "\n"

gem.executables = executables.map { |f| File.basename f }
gem.files = files
Expand Down

0 comments on commit 804bedc

Please # to comment.