Skip to content

Commit 1fec8e2

Browse files
authored
Do not include .github directory into released gem
I have not tested this change, I have just edited the file via GH, but the point is that currently, the `.github` directory is included in released gem, which is probably mistake.
1 parent 8d3c549 commit 1fec8e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rake.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Rake has the following features:
3030
"source_code_uri" => "https://github.com/ruby/rake/tree/v#{s.version}",
3131
}
3232

33-
s.files = %x[git ls-files -z].split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } -
33+
s.files = %x[git ls-files -z].split("\x0").reject { |f| f.match(%r{^(test|spec|features|\.github)/}) } -
3434
%w[.rubocop.yml .gitignore .travis.yml appveyor.yml]
3535
s.bindir = "exe"
3636
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)