I upgraded rails to 4.1.0 & installed gem "spring"
After it, I patched bundle exec spring binstub --all
. Now, all my bin/*
includes
begin
load File.expand_path("../spring", __FILE__)
rescue LoadError
end
But, if I run, saying time spring rake -T
& time rake -T
times 1 second & 3 seconds! It seems that spring not used by default in my application. What's going wrong? It's bad thing that I need to write annoying spring ..command..
before any rake task, rails server or rspec. What I need to do to avoid spring
command with spring worked by default?