lib/tapioca/generator.rb in tapioca-0.4.13 vs lib/tapioca/generator.rb in tapioca-0.4.14
- old
+ new
@@ -190,9 +190,13 @@
rescue LoadError => e
explain_failed_require(config.postrequire, e)
exit(1)
end
say(" Done", :green)
+ unless bundle.missing_specs.empty?
+ say(" completed with missing specs: ")
+ say(bundle.missing_specs.join(', '), :yellow)
+ end
puts
end
sig { params(file: String, error: LoadError).void }
def explain_failed_require(file, error)