Examples of Rake being used by famous gems
Currently, Rake is used by the Ruby community in general. The most frequent application of Rake is to automate running tests and generating the project documentation. There are tons of gems that use Rake for these purposes. You may choose to trust me or check it out yourself by visiting http://github.com. In this chapter, we will examine a Sinatra gem that is more suitable for us. It uses Rake for both these tasks: running tests and generating documentation.
Note
Sinatra is a lightweight framework that allows us to create web applications with minimum effort. To read more about this, check out the official documentation at http://www.sinatrarb.com.
There is one more interesting application of Rake. Some tools inherit the basic classes of Rake and in this way, extend the functionality and the DSL for their needs. One of the most famous tools that use Rake like this is Capistrano. It's a deployment tool that has been rewritten recently from pure Ruby...