From a7999795f77b421064b47a7f8e48f4561c76f4fc Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Tue, 17 May 2022 17:50:25 -0300 Subject: [PATCH] up: do not rely on git It can avoid you to install git on your Dockerfile for during the `bundle install`. --- rating.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rating.gemspec b/rating.gemspec index 3cc426d..517d538 100644 --- a/rating.gemspec +++ b/rating.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |spec| spec.description = 'A true Bayesian rating system with scope and cache enabled.' spec.email = 'wbotelhos@gmail.com' spec.extra_rdoc_files = Dir['CHANGELOG.md', 'LICENSE', 'README.md'] - spec.files = `git ls-files lib`.split("\n") + spec.files = Dir['lib/**/*'] spec.homepage = 'https://github.com/wbotelhos/rating' spec.license = 'MIT' spec.name = 'rating'