Skip to content

Add all appropriate files (excluding tests) to the gem #507

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

Merged
merged 1 commit into from
Dec 31, 2020
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
32 changes: 5 additions & 27 deletions git.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,31 +38,9 @@ Gem::Specification.new do |s|
s.add_development_dependency 'yardstick', '~> 0.9'
end

s.files = [
'CHANGELOG.md',
'CONTRIBUTING.md',
'MAINTAINERS.md',
'LICENSE',
'README.md',
'lib/git.rb',
'lib/git/author.rb',
'lib/git/base.rb',
'lib/git/base/factory.rb',
'lib/git/branch.rb',
'lib/git/branches.rb',
'lib/git/config.rb',
'lib/git/diff.rb',
'lib/git/index.rb',
'lib/git/lib.rb',
'lib/git/log.rb',
'lib/git/object.rb',
'lib/git/path.rb',
'lib/git/remote.rb',
'lib/git/repository.rb',
'lib/git/stash.rb',
'lib/git/stashes.rb',
'lib/git/status.rb',
'lib/git/version.rb',
'lib/git/working_directory.rb'
]
# 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.
s.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(tests|spec|features)/}) }
end
end