I am currently using Spork with Guard, Rspec, and Cucumber. I'd like to move to Spring, but can't find any documentation on what I need to change.
Specifically, I'm curious if I need to change out my:
require 'spork'
Spork.prefork do
# ...
end
Spork.each_run do
# ...
end
...with something like:
require 'spring'
Spring.prefork do
# ...
end
Spring.each_run do
# ...
end
However, I know that there isn't a Spring.prefork
because the documentation says so. So should I simply remove the references to Spork
or do I need to replace them with something?