What exactly is Rake?

后端 未结 4 1063
攒了一身酷
攒了一身酷 2021-01-30 08:03

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.)

4条回答
  •  不思量自难忘°
    2021-01-30 08:47

    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.

提交回复
热议问题