Skip to content

Commit 4d38f7a

Browse files
committed
Update manifest tasks to ignore appraisal-related files
1 parent c5a2591 commit 4d38f7a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/tasks/manifest.rake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
namespace :manifest do
44
def gemmable_files
55
`git ls-files -z`.split("\x0").reject do |file|
6-
file.match(%r{^(bin|spec)/}) ||
6+
file.match(%r{^(bin|spec|gemfiles)/}) ||
77
file.end_with?("/.keep") ||
88
file.start_with?(".") ||
9-
%w(Manifest.txt Gemfile Rakefile publify_amazon_sidebar.gemspec).include?(file)
9+
%w(Manifest.txt Gemfile Rakefile Appraisals publify_amazon_sidebar.gemspec)
10+
.include?(file)
1011
end
1112
end
1213

0 commit comments

Comments
 (0)