Skip to content

Commit

Permalink
Removed needless files from Gem::Specification#files
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Dec 28, 2020
1 parent 5e1a9b0 commit 61c49af
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions drb.gemspec
Expand Up @@ -19,11 +19,24 @@ Gem::Specification.new do |spec|
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage

# 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.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.files = %w[
LICENSE.txt
drb.gemspec
lib/drb.rb
lib/drb/acl.rb
lib/drb/drb.rb
lib/drb/eq.rb
lib/drb/extserv.rb
lib/drb/extservm.rb
lib/drb/gw.rb
lib/drb/invokemethod.rb
lib/drb/observer.rb
lib/drb/ssl.rb
lib/drb/timeridconv.rb
lib/drb/unix.rb
lib/drb/version.rb
lib/drb/weakidconv.rb
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
Expand Down

0 comments on commit 61c49af

Please sign in to comment.