如何加快Ruby / Rake任务的速度

前端之家收集整理的这篇文章主要介绍了如何加快Ruby / Rake任务的速度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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

第一次运行需要更多时间,但后续运行速度非常快.

原文链接:https://www.f2er.com/ruby/270389.html

猜你在找的Ruby相关文章