gpt4 book ai didi

ruby - 我怎样才能加快 Ruby/Rake 任务

转载 作者:数据小太阳 更新时间:2023-10-29 06:53:52 25 4
gpt4 key购买 nike

rake --tasks 运行大约需要 18 秒。这只是加载所有任务所需的时间,因此我定义的任何任务都至少需要这段时间来运行:

$time rake --tasks
rake db:clean # Cleaning up database
rake passenger:restart # Restart Application
rake spec # Run specs

real 0m18.816s
user 0m7.306s
sys 0m5.665s

我的 Rakefile:

$: << "."
require "rubygems"
require "rspec/core/rake_task"

desc "Run those specs"
task :spec do
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = %w{--colour --format progress}
t.pattern = 'spec/*_spec.rb'
end
end

task :default => :spec

知道为什么 rake 需要很多次吗?谢谢

最佳答案

尝试 spring

命令行如下所示:

spring rake -T

第一次运行会比较费时间,后面的运行会很快。

关于ruby - 我怎样才能加快 Ruby/Rake 任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8545459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com