Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude unneeded files from the package #23

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Exclude unneeded files from the package
  • Loading branch information
nobu committed Mar 4, 2024
commit 0f0bbb046286be25e3fbe70d512924b5d6e3d520
5 changes: 3 additions & 2 deletions tracer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ Gem::Specification.new do |spec|

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
gemspec = File.basename(__FILE__)
spec.files =
Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0")
.reject do |f|
(f == __FILE__) ||
(f == gemspec) ||
f.match(
%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)}
%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor|(?:Rake|Gem)file)}
)
end
end
Expand Down