Ruby 关于 Rails Windows 的 Zeus 替代方案?

Ruby on Rails Zeus Alternative for Windows?

我想加快我的应用程序的测试套件,目前需要 13 秒到 运行。一位朋友推荐我使用 Zeus,但它在 Windows 上不起作用。还有哪些选择?

宝石文件

group :test do
 gem 'capybara'
 gem 'factory_girl_rails', '~> 4.2.1'
 gem 'rspec-rails'
end

编辑: 我环顾四周,制作 Spork 的人告诉我使用 Spring。

看看这个RailsCast on Spork

来自视频:

"Spork improves the loading time of your test suite by starting up your Rails application once in the background. Use it with Guard for the ultimate combo."

您可以尝试 spork 作为 Zeus

的替代方案

Spork 是 Tim Harper 的测试服务器实现(类似于 script/spec_server,曾经由 rspec-rails 提供)并且它也在 windows 上运行.