Basically, it runs rake jobs, generators, destroyers, tests… in under a second by preloading the various environments and then just forking an appropriate existing process when a command is triggered, real life-saver
Yes, zeus is a nice one to speed up development lifecycle. There’s also spring, a new tool from jonleighton that’s under test and is likely to be the default integration with Rails as part of the development process, I recommend you guys to take a look.
Pete, I think the path that zeus and spring are taking is the way to go, since it does not help only with model generators, but speeds up generators, console, tests, and everything else related to our development workflow.
For now you can just install the gem (like spring) and use its commands in any 3.x app, it doesn’t even need to be in your Gemfile. Check its readme for more info.
This seems really cool. Is Spring appropriate running on production
servers? For example, on deploy, many different rake tasks may be invoked
(asset compilation, database migrations, etc...) and having something like
this spawned could result in a significant speed-up.