What exactly is Rake?

后端 未结 4 1068
攒了一身酷
攒了一身酷 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:42

    Rake is an implementation of dependency-based declarative programming in the Ruby Programming Language. Basically, Rake is to Ruby what Make is to C, with the notable difference, that Make is an external DSL, while Rake is an internal DSL.

提交回复
热议问题