exe/ruby-lsp-doctor in ruby-lsp-0.14.1 vs exe/ruby-lsp-doctor in ruby-lsp-0.14.2
- old
+ new
@@ -4,9 +4,11 @@
$LOAD_PATH.unshift(File.expand_path("../lib", __dir__))
require "ruby_lsp/internal"
index = RubyIndexer::Index.new
+puts "Globbing for indexable files"
+
RubyIndexer.configuration.indexables.each do |indexable|
puts "indexing: #{indexable.full_path}"
content = File.read(indexable.full_path)
result = Prism.parse(content)
collector = RubyIndexer::Collector.new(index, result, indexable.full_path)