mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 06:25:31 +02:00
Restore tracked_files for ruby core repo
This commit is contained in:
parent
ab7f54688b
commit
8db0de92a8
1 changed files with 7 additions and 1 deletions
|
@ -80,7 +80,13 @@ module Spec
|
||||||
end
|
end
|
||||||
|
|
||||||
def shipped_files
|
def shipped_files
|
||||||
@shipped_files ||= ruby_core? ? loaded_gemspec.files.map{|f| f.gsub(/^exe\//, "libexec/")} : loaded_gemspec.files
|
@shipped_files ||= if ruby_core_tarball?
|
||||||
|
loaded_gemspec.files.map{|f| f.gsub(/^exe\//, "libexec/")}
|
||||||
|
elsif ruby_core?
|
||||||
|
tracked_files
|
||||||
|
else
|
||||||
|
loaded_gemspec.files
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def lib_tracked_files
|
def lib_tracked_files
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue