From 89e43fea1cf55de3f2cf1a2230e43f399c7fdec9 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 9 May 2019 22:22:14 -0400 Subject: [PATCH] use 10000 sources for large project instead of 1000 --- Rakefile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile.rb b/Rakefile.rb index b0d20fe..d876133 100644 --- a/Rakefile.rb +++ b/Rakefile.rb @@ -42,7 +42,7 @@ YARD::Rake::YardocTask.new do |yard| end task :gen_large_project, [:size] => :build_dist do |task, args| - size = (args.size || 1000).to_i + size = (args.size || 10000).to_i FileUtils.rm_rf("large_project") FileUtils.mkdir_p("large_project/src") size.times do |i|