Rakefile in rbs-3.4.0.pre.1 vs Rakefile in rbs-3.4.0
- old
+ new
@@ -54,11 +54,11 @@
end
task :validate => :compile do
require 'yaml'
- sh "#{ruby} #{rbs} validate --silent"
+ sh "#{ruby} #{rbs} validate"
libs = FileList["stdlib/*"].map {|path| File.basename(path).to_s }
# Skip RBS validation because Ruby CI runs without rubygems
case skip_rbs_validation = ENV["SKIP_RBS_VALIDATION"]
@@ -70,10 +70,10 @@
STDERR.puts "🚨🚨🚨🚨 SKIP_RBS_VALIDATION is expected to be `true` or unset, given `#{skip_rbs_validation}` 🚨🚨🚨🚨"
libs << "rbs"
end
libs.each do |lib|
- sh "#{ruby} #{rbs} -r #{lib} validate --silent"
+ sh "#{ruby} #{rbs} -r #{lib} validate"
end
end
FileList["test/stdlib/**/*_test.rb"].each do |test|
task test => :compile do