我已將spork-rails添加到我的Gemfile中,位於:test部分下,並運行bundle install。 bundle show spork現在給出/var/lib/gems/1.9.1/gems/spork-1.0.0rc2 但是,現在當我做spork cuc時,bash告訴我The program 'spork' is not currently installed。如果我嘗試bun
假設有下面的類 # derp.rb
class Derp < Struct.new :id
end
當我load "./derp.rb"兩倍程序失敗TypeError: superclass mismatch for class Derp。好的,這可以使用require進行管理。但是,如何使用Spork爲每次測試運行重新加載這些類? require顯然不起作用,因爲它會緩存加載的文件。