git-multi.gemspec in git-multi-2.3.0 vs git-multi.gemspec in git-multi-2.4.0

- old
+ new

@@ -12,14 +12,14 @@ spec.summary = 'The ultimate multi-repo utility for git!' spec.description = 'Run the same git command in a set of related repos' spec.homepage = 'https://github.com/pvdb/git-multi' spec.license = 'MIT' - spec.files = begin - `git ls-files -z` - .split("\x0") - .reject { |f| f.match(%r{^(test|spec|features)/}) } - end + spec.files = Dir.chdir(File.expand_path(__dir__)) do + `git ls-files -z` + .split("\x0") + .reject { |f| f.match(%r{^(test|spec|features)/}) } + end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.post_install_message = Git::Multi::PIM