Skip to content

Commit

Permalink
Exclude spec files from gem package
Browse files Browse the repository at this point in the history
  • Loading branch information
williantenfen committed Aug 7, 2024
1 parent 0b2645a commit bbca85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.metadata["rubygems_mfa_required"] = "true"
s.metadata["changelog_uri"] = "https://github.com/fnando/browser/blob/main/CHANGELOG.md"

s.files = `git ls-files`.split("\n")
s.files = `git ls-files`.split("\n").reject {|f| f.start_with? ('test/') }
s.executables = `git ls-files -- exe/*`
.split("\n")
.map {|f| File.basename(f) }
Expand Down

0 comments on commit bbca85b

Please sign in to comment.