我正在使用Rails 5 RC1。使用spring-commands-rspec gem(在编写本文时尚未更新),我在bin/rspec
生成了这个spring rspec binstub:
#!/usr/bin/env ruby
begin
load File.expand_path('../spring', __FILE__)
rescue LoadError => e
raise unless e.message.include?('spring')
end
require_relative '../config/boot'
load Gem.bin_path('rspec-core', 'rspec')
bin/rspec
有效,但如果我再次运行bin/rspec
,则需要的时间与第一次相同。
即使spring status
向我展示了这一点,也没有速度提升:
Spring is running:
29530 spring server | my_app | started 9 secs ago
29531 spring app | my_app | started 9 secs ago | test mode
表示所有内容都已正确预装。
相同的设置在Rails 4上运行完美。有关如何在Rails 5 RC1中使用它的任何想法吗?