Skip to content

Commit 77a9cdd

Browse files
committed
Exclude sorbet files from gem too
1 parent 708c20e commit 77a9cdd

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

ruby-lsp-rspec.gemspec

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,18 @@ Gem::Specification.new do |spec|
2323
spec.files = Dir.chdir(__dir__) do
2424
%x(git ls-files -z).split("\x0").reject do |f|
2525
(File.expand_path(f) == __FILE__) ||
26-
f.start_with?("bin/", "test/", "spec/", "features/", ".git", ".circleci", "appveyor", "Gemfile", "misc/")
26+
f.start_with?(
27+
"bin/",
28+
"test/",
29+
"spec/",
30+
"features/",
31+
".git",
32+
".circleci",
33+
"appveyor",
34+
"Gemfile",
35+
"misc/",
36+
"sorbet/",
37+
)
2738
end
2839
end
2940
spec.bindir = "exe"

0 commit comments

Comments
 (0)