From d89c1b4697bbabcc5e2f665b0ff3f6dcfc41c921 Mon Sep 17 00:00:00 2001 From: Karneades Date: Tue, 28 May 2019 11:16:57 +0200 Subject: [PATCH] Add commands to rake section for listing tasks --- docs/guides/getting-started/part_3_workflows.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/getting-started/part_3_workflows.rst b/docs/guides/getting-started/part_3_workflows.rst index 9e266c5..9c2085e 100644 --- a/docs/guides/getting-started/part_3_workflows.rst +++ b/docs/guides/getting-started/part_3_workflows.rst @@ -39,7 +39,7 @@ Rakefile: Your Project's Butler Programming is more than simply writing and executing one a program at a time. It's about managing lots of files and programs at once so that you can do whatever you want, whenever you want. "Building" is the software development word for this, and every programming language has some version of this tool. -In Ruby, this tool is called ``rake``. (A pun on the popular tool for C, called ``make``.) The way that ``rake`` is configured is by executing a special Ruby file called a ``Rakefile`` at the root of your repository. +In Ruby, this tool is called ``rake``. (A pun on the popular tool for C, called ``make``.) The way that ``rake`` is configured is by executing a special Ruby file called a ``Rakefile`` at the root of your repository. Use ``rake -T`` or ``rake -T [pattern]`` to quickly list available rake tasks. Consider the following example from our built-in advanced project generator: