In simple terms, what does Rake do? What purposes does it have? I understand it\'s a build tool but I\'m looking a bit more detail. (For a simpleton.)
Rake lets you execute Ruby code through a nice namespace api. An example is rake db:migrate. You can run tasks automatically before and after other tasks. That is all.